Matrix dimensions must agree.

How do I multiply a 2x101 matrix with a 101x101 matrix??
I tried everything, it gives me the above error every time.
Please help,
Thanks, Rohan

 Accepted Answer

>> A = rand(2,101); B = rand(101,101); size(A*B)
ans =
2 101

3 Comments

Hi Walter, HOw can I get the multiplication result?
all I get in this case is 2 101
OK! got it, thnk u so much!!

Sign in to comment.

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!