フィルターのクリア

Finding an index in a structure with a 'char' field

14 ビュー (過去 30 日間)
Natalija Nikolic
Natalija Nikolic 2021 年 9 月 1 日
コメント済み: Natalija Nikolic 2021 年 9 月 2 日
Hello everyone,
I have a structure with 4 fields (see the photo). I want to get the row index when I specify the y I am looking for. For example, I want to get indices 1,2,3 and 4 back when I specify y='ATC'.
How can I do that?

採用された回答

Chunru
Chunru 2021 年 9 月 1 日
You can try the following or you post your data.
idx = strcmp({s.y}, 'ATC');
s(idx)
  1 件のコメント
Natalija Nikolic
Natalija Nikolic 2021 年 9 月 2 日
Thank you very much. It doesn't do exactly what I was aiming for, but it sure helped me a lot.

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by