Rearrange matrix rows in specific order
조회 수: 27 (최근 30일)
이전 댓글 표시
I have a matrix whose rows I would like to re-order in a specific order
e.g.,) I need the order of the rows to go from [1 2 3 4 5 6 7] to lets say [2 3 4 5 1 6 7] ?
댓글 수: 0
답변 (1개)
C B
2021년 11월 9일
Matrix_A = [1 1 1;2 2 2;3 3 3 ; 4 4 4; 5 5 5; 6 6 6; 7 7 7]
Inp = [2 3 4 5 1 6 7];
Output = Matrix_A(Inp,:)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!