Matrix Multiplication Help
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have 2 matrix. A=[1 2 3], B=[3 4 5 6 7 8]
What id like to do is for every value in A, multiply it by B. So end up with
C = 3 6 9
4 8 12
5 10 15
6 12 18
7 14 21
8 16 24
Any help would be much appreciated. Thanks
0 comentarios
Respuesta aceptada
bym
el 12 de Nov. de 2011
c = b'*a
2 comentarios
David Young
el 12 de Nov. de 2011
+1, yes, but for generality better to use .' in case b is complex.
Más respuestas (1)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!