フィルターのクリア

Searching the location of a specific cell in a cell array

1 回表示 (過去 30 日間)
nicolas
nicolas 2013 年 5 月 8 日
Hello community! I have a cell array (1x1000) like this {[1 2], [3 5], [4,2],..., [2 5]} I found the most commonly occurring cell in this, but now I want to find the positions of this cell. Example what is the position of cell [2 5]? and the answer I want to be the (1, 100) (1,205) (1,276) etc
Please help, if anyone knows.

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 5 月 8 日
編集済み: Azzi Abdelmalek 2013 年 5 月 8 日
v={[1 2], [3 5], [4,2],[3 5] ,[4 2]}
w=cell2mat(v')
idx=find(ismember(w,[4,2],'rows'))
  3 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 5 月 9 日
v={[1 2], [3 5], [4,2],[3 5],[],[4 2]}
idx=find(cellfun(@(x) isequal(x,[4,2]),v))
nicolas
nicolas 2013 年 5 月 9 日
its working! Thank you so much

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by