location of logical matrix

5 ビュー (過去 30 日間)
Cside
Cside 2019 年 8 月 22 日
コメント済み: madhan ravi 2019 年 8 月 22 日
Hi I have a 10 x 2 logical matrix and I would need to find out the location of the rows which both columns are ones i.e 1 1.
May I know how I may write for this? Thank you!

採用された回答

madhan ravi
madhan ravi 2019 年 8 月 22 日
編集済み: madhan ravi 2019 年 8 月 22 日
Since you have a logical matrix it’simply:
ix=all(matrix ,2); % logical indexing is efficient
Wanted=find(ix)
  6 件のコメント
Cside
Cside 2019 年 8 月 22 日
thank you madhan for being so clear with your answer :)
madhan ravi
madhan ravi 2019 年 8 月 22 日
While learning always visualize with a simple and short example to understand what's going on.

サインインしてコメントする。

その他の回答 (1 件)

KSSV
KSSV 2019 年 8 月 22 日
Read about ismember
idx = round(rand(10,2)) ;
vec = [1 1] ;
[c,ia] = ismember(idx,vec,'rows') ;
iwant = find(c) ;
idx(c,:)
idx(iwant,:)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by