Matrix multiplication element wise
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Shambhu Prasad
el 18 de Mzo. de 2019
Comentada: Shambhu Prasad
el 18 de Mzo. de 2019
I have two matrices A and B of the order 49*49 each. I want to generate third matrix C whose elements are product of individual elements of A and B (not matrix multiplication)
Like C(i,j) = A(i,j)*B(j,i). What could be the matlab command for this.
Thanks in advance..
0 comentarios
Respuesta aceptada
madhan ravi
el 18 de Mzo. de 2019
A.*B.'
% ^-—-—-I can see in your code you swapped indices for B(j,i)
doc times
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!