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"

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by