Trouble using strings in If statements using OR

15 ビュー (過去 30 日間)
Sarah R
Sarah R 2022 年 1 月 20 日
コメント済み: Stephen23 2022 年 1 月 21 日
I am trying to loop through and use IF statement as example:
if race == "H2" | "H1" | "H3" | "H4"
but I get error "Error using |
Input must be text or pattern."
If I try: race == "H2" || "H1" || "H3" || "H4"
I get error:
Conversion to logical from string is not possible.
"H1" and so forth are strings in Matlab
Thank you!

採用された回答

Voss
Voss 2022 年 1 月 20 日
if race == "H2" || race == "H1" || race == "H3" || race == "H4"
  1 件のコメント
Walter Roberson
Walter Roberson 2022 年 1 月 20 日
Or alternately
if ismember(race, ["H1", "H2", "H3", "H4"])

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by