Clear Filters
Clear Filters

What is the matrix multiplication of these two vectors?

1 view (last 30 days)
A=[ 1 1 1 4 5] and B=[1 2 3 4 5]

Accepted Answer

Todd Leonhardt
Todd Leonhardt on 17 May 2016
Edited: Todd Leonhardt on 17 May 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)

More Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 17 May 2016

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!