Borrar filtros
Borrar filtros

how to multiplying two matrices in following way

1 visualización (últimos 30 días)
mahesh chathuranga
mahesh chathuranga el 4 de Oct. de 2013
Editada: Image Analyst el 4 de Oct. de 2013
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.

Respuesta aceptada

Image Analyst
Image Analyst el 4 de Oct. de 2013
Editada: Image Analyst el 4 de Oct. de 2013
c = a .* b;
The dot before the * is important. Otherwise you'd be doing a matrix multiplication, not an element by element multiplication.

Más respuestas (0)

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by