Answers for "multiply a matrix by a vetor in matlab"

-1

how to multiply matrixes in matlab

A = [1 1 0 0];
B = [1; 2; 3; 4];

%Multiply A times B.
C = A*B
Posted by: Guest on September-01-2021

Code answers related to "multiply a matrix by a vetor in matlab"

Browse Popular Code Answers by Language