Fastest & most effective way to create this matrix:
이전 댓글 표시
Hey there, I have been searching for hours for a good solution & not found one yet. I need to create this matrix (6X6):
A = 0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 1 2 3
0 0 0 4 5 6
0 0 0 7 8 9
It must be in an effective & short way. Thank you if anyone can help with this one.
채택된 답변
추가 답변 (1개)
clear A;
A(4:6,4:6) = reshape(1:9,3,3)'
댓글 수: 2
Eitan
2014년 12월 19일
Sean de Wolski
2014년 12월 19일
I'd expect this to be the fastest way to do this.
카테고리
도움말 센터 및 File Exchange에서 MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!