How to create vector which is linear combination of a matrix

69 ビュー (過去 30 日間)
aliza mustafa
aliza mustafa 2022 年 8 月 30 日
コメント済み: aliza mustafa 2022 年 8 月 30 日
Hi,
I have my matrix M as:
M = [1,2,3; 4,5,6; 7,8,9];
I am trying to create a vector that is a linear combination of the columns of M. I am doing it this way:
vec= [2*M(:,1); 3*M(:,2); 4*M(:,3)];
Its resulting in:
vec =
2
8
14
6
15
24
12
24
36
It doesn't seem right to me. Can you please help me in that? Any help will be really appreciated. Thanks in advance.
  2 件のコメント
Karim
Karim 2022 年 8 月 30 日
You will need to expand a bit on why it doesn't seem right ... what would you expect as output?
aliza mustafa
aliza mustafa 2022 年 8 月 30 日
I was making mistake in making the vector. I got it done this way:
vec= 2*M(:,1) + 3*M(:,2) + 4*M(:,3);
Thanks :)

サインインしてコメントする。

採用された回答

Matt J
Matt J 2022 年 8 月 30 日
Perhaps you instead meant to have,
M = [1,2,3; 4,5,6; 7,8,9];
vec=M*[2;3;4]
vec = 3×1
20 47 74

その他の回答 (1 件)

Chunru
Chunru 2022 年 8 月 30 日
M = [1,2,3; 4,5,6; 7,8,9]
M = 3×3
1 2 3 4 5 6 7 8 9
vec= sum([2*M(:,1) 3*M(:,2) 4*M(:,3)], 2)
vec = 3×1
20 47 74
% Alternatively
vec =M*[2; 3; 4]
vec = 3×1
20 47 74

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by