How to select rows from an array?
조회 수: 56 (최근 30일)
이전 댓글 표시
I have matrix of A . I need to select the 2nd, 4th and 6th row. How can I write that in MATLAB code?
댓글 수: 0
답변 (3개)
Torsten
2022년 10월 12일
B = [A(2,:);A(4,:);A(6,:)]
or if you want the rows one by one:
A2 = A(2,:);
A4 = A(4,:);
A6 = A(6,:);
댓글 수: 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!