How can print out the below content by MATLAB program?
1 次查看(过去 30 天)
显示 更早的评论
Hi,
i want to use the MATLAB to print out the below result, but I could not put the values in each row, how can I revise my program?
Thanks!
What I want to print out:
1
21
321
4321
54321
And there are my code & result:
for i = 1:1:5
for j =i:-1:1
disp(j);
end
end
1
2
1
3
2
1
4
3
2
1
5
4
3
2
1
0 个评论
采纳的回答
Star Strider
2019-4-19
You do not need the second for loop. Simply print the value of ‘j’ in each iteration of the ‘i’ loop:
for i = 1:1:5
j =i:-1:1;
disp(j)
end
producing:
1
2 1
3 2 1
4 3 2 1
5 4 3 2 1
更多回答(0 个)
另请参阅
类别
在 Help Center 和 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!