What is the matrix multiplication of these two vectors?
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Bella
el 17 de Mayo de 2016
Comentada: Bella
el 17 de Mayo de 2016
A=[ 1 1 1 4 5] and B=[1 2 3 4 5]
0 comentarios
Respuesta aceptada
Todd Leonhardt
el 17 de Mayo de 2016
Editada: Todd Leonhardt
el 17 de Mayo de 2016
To do matrix multiplication the inner dimensions must agree. Both of your matrices are 1x5 vectors. You can do either of the following:
A' * B (results in a 5x5 matrix)
or
A * B' (results in a 1x1 scalar)
Más respuestas (1)
Ver también
Categorías
Más información sobre Resizing and Reshaping 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!