Answers for "matrices multiplication in matlab"

0

matrices multiplication in matlab

%Matrice Multiplication in Matlab 
A = [ 0 1 ; 13 42 ];
B = [51 60];
C = A.*B
Posted by: Guest on October-03-2021
-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

Browse Popular Code Answers by Language