フィルターのクリア

How to find more than one string using find - strcmp?

10 ビュー (過去 30 日間)
Marco
Marco 2024 年 2 月 5 日
移動済み: Stephen23 2024 年 2 月 6 日
I need to find the location in a structure of these two strings: 'stm+' and 'stm-'.
I am using the simple following line code:
index = find(strcmp({EEG.event.code}, 'stm+')==1)
However, this finds only one string (ie, 'stm+').
How can I find both of them ('stm+' and 'stm-') so that matlab returns the position of all the strings?
I tried
index = find(strcmp({EEG.event.code}, 'stm+', 'stm-')==1)
but it doesn't work.
It's important to mention that I'm not looking for true or false answer, but the location (row number).
Thanks a lot for your help!!!

採用された回答

Benjamin Kraus
Benjamin Kraus 2024 年 2 月 6 日
編集済み: Benjamin Kraus 2024 年 2 月 6 日
There are several options to accomplish this goal.
I'm assuming that the output from {EEG.event.code} is a cell-array of character vectors. So that my code below works, I'm going to hard-code a bunch of codes.
codes = {'notstm','abc','def','stm+','stm-','ghi','nope','jkl','stm-','mno','stm+','stmnot-','stmnot+'};
If I'm understanding correctly, your goal is to find the index of either 'stm+' or 'stm-' (which, in this case, should be 4,5, 9, and 11.
Option 1
This uses two separate calls to == and a boolean comparison (or).
index = find(codes == "stm+" | codes == "stm-")
index = 1×4
4 5 9 11
Option 2
This option uses ismember.
index = find(ismember(codes,{'stm+','stm-'}))
index = 1×4
4 5 9 11
Option 3
This option uses pattern expressions.
When you combine two scalar strings using the boolean "or" (|) operator, you get a pattern object that matches either string, then you can call matches to look for valid matches to your pattern.
Note that when you call matches you can specify whether to IgnoreCase or not.
pat = "stm+" | "stm-"
pat = pattern
Matching: "stm+" | "stm-"
index = find(matches(codes, pat))
index = 1×4
4 5 9 11
Option 4
This is just a variant of the previous example.
pat = "stm" + ("+" | "-")
pat = pattern
Matching: "stm" + ("+" | "-")
index = find(matches(codes, pat))
index = 1×4
4 5 9 11
  3 件のコメント
Marco
Marco 2024 年 2 月 6 日
移動済み: Stephen23 2024 年 2 月 6 日
I managed to make it work in this way:
I have transformed the structure in a chararray with char function.
Then I used Option 2 posted by Benjamin Kraus.
Thanks a lot everyone!
Matt J
Matt J 2024 年 2 月 6 日
移動済み: Stephen23 2024 年 2 月 6 日
If so, you should accept-click @Benjamin Kraus' answer.

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by