How to save every answers in matrix with 2 for loops.

1 回表示 (過去 30 日間)
YU-SYUAN SU
YU-SYUAN SU 2019 年 10 月 9 日
コメント済み: YU-SYUAN SU 2019 年 10 月 9 日
Hi,I am a student,so I have a trouble to this problem.
I want to create a 16*3 matrix that save every loop answer.
right now I have
d1=[0.25 6.25 0.25; 1 4 1; 2.25 2.25 2.25; 4 1 4]
d2=[0.25 0.25 6.25; 1 1 4; 2.25 2.25 2.25; 4 4 1]
for k=1:4
for j=1:4
(d1(k,:)+d2(j,:))
end
end
the answer is a 1*3 matrix every time,
for loop,I have 16 time answer,
so I want to save every iteration loop answer .

採用された回答

Stephen23
Stephen23 2019 年 10 月 9 日
編集済み: Stephen23 2019 年 10 月 9 日
You don't need loops, with the correct indices and one simple addition:
>> [X,Y] = ndgrid(1:4);
>> d1(X(:),:) + d2(Y(:),:)
ans =
0.50000 6.50000 6.50000
1.25000 4.25000 7.25000
2.50000 2.50000 8.50000
4.25000 1.25000 10.25000
1.25000 7.25000 4.25000
2.00000 5.00000 5.00000
3.25000 3.25000 6.25000
5.00000 2.00000 8.00000
2.50000 8.50000 2.50000
3.25000 6.25000 3.25000
4.50000 4.50000 4.50000
6.25000 3.25000 6.25000
4.25000 10.25000 1.25000
5.00000 8.00000 2.00000
6.25000 6.25000 3.25000
8.00000 5.00000 5.00000
  1 件のコメント
YU-SYUAN SU
YU-SYUAN SU 2019 年 10 月 9 日
Thank you very much!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by