How do I create a (10,10) matrix containing numbers from 1 to 100?
205 ビュー (過去 30 日間)
古いコメントを表示
How do I create a (10,10) matrix containing numbers from 1 to 100?
I just want the numbers to go 1 to 10 on the top row, then 11-20 on the 2nd row etc.
2 件のコメント
採用された回答
その他の回答 (4 件)
Steven Lord
2022 年 1 月 25 日
Another solution using implicit expansion (which wasn't available back in 2013 when this question was posted):
n = 10;
A = (1:n) + n*(0:n-1).'
0 件のコメント
SYED ABOU ILTAF HUSSAIN
2018 年 9 月 2 日
編集済み: SYED ABOU ILTAF HUSSAIN
2018 年 9 月 2 日
Try this a= [1:10]; for i=2:10 a(i,:)=a(i-1,:)+10; end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!