matrix generation 1 to n*n or interval
조회 수: 2 (최근 30일)
이전 댓글 표시
hi guys i have a problem.. how can i generate a matrix n*n with 1 to n*n elements or any other interval? like for a 3x3 1 2 3 ; 4 5 6 ; 7 8 9 ( i don't want to type it directly i want to generate it knowing n ). Thank you.
댓글 수: 0
채택된 답변
Jos (10584)
2014년 3월 18일
reshape(1:n^2,n,n).'
댓글 수: 2
Jos (10584)
2014년 3월 18일
You might also take a look at this function which I submitted over 8 years ago on the File Exchange:
out = slm(n).'
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!