print 2d array using nested foor
古いコメントを表示
Hello, I want to print an array as follows
9 9 9 9 9 9 9 9 9 9
8 8 8 8 8 8 8 8 8 8
7 7 7 7 7 7 7 7 7 7
6 6 6 6 6 6 6 6 6 6
5 5 5 5 5 5 5 5 5 5
4 4 4 4 4 4 4 4 4 4
3 3 3 3 3 3 3 3 3 3
2 2 2 2 2 2 2 2 2 2
1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0 0
2 件のコメント
Dyuman Joshi
2022 年 10 月 10 日
What have you tried yet? What is the error you are facing? Show your code.
Abdullah Afar
2022 年 10 月 11 日
回答 (2 件)
%Updating your solution
%pre-allocation
a=zeros(10);
for i=1:10
for j=1:10
a(i,j)=10-i;
end
end
a
You can also get the same result (directly) by using some other functions (if using for loop is not necessary) -
[~,y]=meshgrid(9:-1:0)
x=repelem((9:-1:0)',1,10)
カテゴリ
ヘルプ センター および 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!