フィルターのクリア

Find where two cell arrays of different sizes are equal

17 ビュー (過去 30 日間)
Camille Woicekowski
Camille Woicekowski 2020 年 9 月 22 日
I have two cell arrays of different sizes filled with chars. I want to loop through and find the indices of one cell where the char values are equal to each other.
for example,
cell1={'cat','dog','pig','cow','goat'}
cell2={'meow','cat','bark','goat'}
should return 1 and 5 if I loop through cell one.
If these were doubles, I would use
for i=1:size(cell1,2)
ind=find(cell2==cell1(1,i))
end
but with these variable types I'm having some trouble.
cell2{1,2}==cell1{1,1}
return the logcial True but
find(cell2==cell1{1,1})
returns the error message "Operator == is not supported for opperands type cell". I also tried using cellfun(@isequal, cell1, cell2) but I get an error message because the size and shape of my cells are not equal.
How can I get the desired result using these variable types?
  2 件のコメント
Stephen23
Stephen23 2020 年 9 月 22 日
編集済み: Stephen23 2020 年 9 月 22 日
"If these were doubles, I would use"
for i=1:size(cell1,2)
ind=find(cell2==cell1(1,i))
end
The MATLAB approach would be to use ismember, e.g.:
>> A = [99,100,112,111,103];
>> B = [109,99,98,103];
>> find(ismember(A,B))
ans =
1 5
Which also works for cell arrays of character vectors:
>> A = {'cat','dog','pig','cow','goat'};
>> B = {'meow','cat','bark','goat'};
>> find(ismember(A,B))
ans =
1 5
Camille Woicekowski
Camille Woicekowski 2020 年 9 月 22 日
Wow, can you tell I learned Python first? Matlab has been all self-taught for me. This is really helpful, thank you!

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

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 9 月 22 日
編集済み: Ameer Hamza 2020 年 9 月 22 日
To compare char arrays, strcmp() should be used. However, since you are using the lastest version of MATLAB, so there are easier ways
cell1={'cat','dog','pig','cow','goat'};
cell2={'meow','cat','bark','goat'};
idx = find(any(string(cell1) == string(cell2).'));
Result
>> idx
idx =
1 5
  3 件のコメント
Ameer Hamza
Ameer Hamza 2020 年 9 月 22 日
Yes, that is the power of MATLAB vectorization. Most of the things can be done without loops.
I am glad to be of help!
per isakson
per isakson 2020 年 9 月 22 日
... or
find( ismember( cell1, cell2 ) )

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by