Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Could anyone please help me to do matrix multiplication with respect to the sample data given below.

1 Ansicht (letzte 30 Tage)
If
A=[2 3 4]
B=A*[1;
2;
3]
so i want to multiply 2 with
[1;
2;
3]
followed by 3 with
[1;
2;
3]
finally 4 with
[1;
2;
3]
so at the end i need to have 3x3 matrix.

Antworten (1)

Sindar
Sindar am 21 Feb. 2020
Matrix multiplication only works when the "middle" dimension matches ( N x M ) * ( M x O )
Check the sizes of your matrices:
>> size(A)
ans =
1 3
>> size([1;2;3])
ans =
3 1
So, A*([1;2;3]) is not valid, but ([1;2;3])*A is (and gives you what you want):
>> B = [1;2;3]*A
B =
2 3 4
4 6 8
6 9 12

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by