logical indexing in one line when choosing from a column

조회 수: 1 (최근 30일)
Theo
Theo 2015년 2월 18일
답변: Stephen23 2015년 2월 18일
I want to choose a column vector from a matrix and do the logical indexing on it. For example
chosen=matrix(:,1);
chosen=chosen(idx);
where in above idx is a logical index vector. Now my problem is I don't want to do it in two lines, I'm thinking about something like
chosen=matrix(:,1)(idx);
now I know the above expression is wrong, but is there a valid replacement for that? Thanks

채택된 답변

Stephen23
Stephen23 2015년 2월 18일
matrix(idx,1)

추가 답변 (1개)

Erik S.
Erik S. 2015년 2월 18일
you can use the find function instead

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by