필터 지우기
필터 지우기

if-else statement with several "or" conditions/ comparisons

조회 수: 1 (최근 30일)
rbme17
rbme17 2017년 7월 10일
댓글: rbme17 2017년 7월 11일
Hi,
So I'm writing an if-else statement, which includes an "or" condition. I wanted to write a statement that gives me the option of checking not only two variables with "or", but a whole array of variables/numbers [a, b, c, d, e...]
if x == a | b --> multiple variables without a ton of code
Sample of my code:
for x = 1:50
Cf(x).yB1 = rand();
if x == a| x == b
Cof(x).fB20 = 0;
Cof(x).fB10 = -2*pi;
else
Cf(x).B10 = -(2*pi/5) * (rand());
Cf(x).B20 = (2*pi/20) * (rand());
Cf(x).B0 = (rand()) - 0.0003 * x^2;
end
end
I'm not entirely sure if what I'm asking is feasible, and if not, does anyone have any other ideas on how I can accomplish this?
Thanks!

채택된 답변

Walter Roberson
Walter Roberson 2017년 7월 10일
if ismember(x, [a, b, c, ...])
  댓글 수: 2
dpb
dpb 2017년 7월 10일
And if will put the various variables into an array that'll reduce code even more and probably help elsewhere besides just here.
rbme17
rbme17 2017년 7월 11일
Okay, thanks so much for the help!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by