Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

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

1 vue (au cours des 30 derniers jours)
jaah navi
jaah navi le 21 Fév 2020
Clôturé : MATLAB Answer Bot le 20 Août 2021
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.

Réponses (1)

Sindar
Sindar le 21 Fév 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

Community Treasure Hunt

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

Start Hunting!

Translated by