How to find equal values/words between two string vectors?

6 ビュー (過去 30 日間)
Luca Tognetti
Luca Tognetti 2022 年 12 月 5 日
コメント済み: Luca Tognetti 2022 年 12 月 5 日
hi, I would need to find a way to comapre two strings vectors and find the equal value/words. Then I need to know in which position are the equal value. I'll post an exmple:
a=[10, 25, V4E, 64, 33];
b=[64, V4E, T2S, 10, 11];
the output i want to obtain is: c= [1, 3, 4]; which is the position of the equal values in the first vector.
if it's possible it would be awsome to have a second row with the value:
c=[1, 3, 4;
10, V4E, 64]
thanks in advance!!

採用された回答

David Hill
David Hill 2022 年 12 月 5 日
a=["10", "25", "V4E", "64", "33"];
b=["64","V4E", "T2S", "10", "11"];
c=find(ismember(a,b))
c = 1×3
1 3 4
d=a(c)
d = 1×3 string array
"10" "V4E" "64"

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImport, Export, and Conversion についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by