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!