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 Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by