selection of particular rows from a matrix?

조회 수: 1 (최근 30일)
minu s
minu s 2016년 10월 23일
댓글: michio 2016년 10월 24일
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.

답변 (1개)

michio
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
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 CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by