selection of particular rows from a matrix?
조회 수: 1 (최근 30일)
이전 댓글 표시
I would like to select rows from a matrix in a particular pattern as: row nos 1,2,3,5,6,7,9,10,11,13 and so on. Please help me in coding the loop.
댓글 수: 0
답변 (1개)
michio
2016년 10월 23일
편집: michio
2016년 10월 23일
ismember function could do the work with 'rows' option.
Please check the example code with 'rows' option on the doc page.
댓글 수: 1
michio
2016년 10월 24일
Very simple sample code follows.
A = [1,2,3; 2,3,1; 3,1,2];
B = [2,3,1];
idx = ismember(A,B,'rows')
A(idx,:)
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!