Nested for loop Please help!
显示 更早的评论
clear
clc
x=zeros(10,10);
for j=1:10;
for i=1:10;
x=j+i
x(i,j)=x
i=i+1
end
j=j+1
end
so my result matrix would look like
2 3 4 5 6 7 8 9 10 11
3 4 5 6 7 8 9 10 11 12
4 5 6 7 8 9 10 11 12 13
5 6 7 8 9 10 11 12 13 14
6 7 8 9 10 11 12 13 14 15
7 8 9 10 11 12 13 14 15 16
8 9 10 11 12 13 14 15 16 17
9 10 11 12 13 14 15 16 17 18
10 11 12 13 14 15 16 17 18 19
11 12 13 14 15 16 17 18 19 20
回答(1 个)
Walter Roberson
2015-11-28
tx=j+i
x(i,j)=tx
类别
在 帮助中心 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!