Info

この質問は閉じられています。 編集または回答するには再度開いてください。

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

1 回表示 (過去 30 日間)
jaah navi
jaah navi 2020 年 2 月 21 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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.

回答 (1 件)

Sindar
Sindar 2020 年 2 月 21 日
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

Community Treasure Hunt

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

Start Hunting!

Translated by