MATLAB: How to multiplying two matrices in following way

matrix operations

my first matrix is
a=[1 2;
3 4;
5 6];.my second matrix is
b=[3 5;
0 2;
5 7];.
I want to obtain
c=[3 10;
0 8;
25 42;];.how can i do this.

Best Answer

c = a .* b;
The dot before the * is important. Otherwise you'd be doing a matrix multiplication, not an element by element multiplication.