フィルターのクリア

If Else Statements With Conditions

1 回表示 (過去 30 日間)
BM
BM 2018 年 7 月 2 日
編集済み: OCDER 2018 年 7 月 2 日
I am looking to write an 'ifelse' statement with the conditions such as the following:
a+7+b <= index <= c
where a, b, and c are variables that change depending on how other parameters change in the program. Simply put, if my index is equal to or greater than a+7+b, or less than or equal to c.

採用された回答

OCDER
OCDER 2018 年 7 月 2 日
編集済み: OCDER 2018 年 7 月 2 日
Did you want "OR" () or "AND" (&&)?
if a+7+b <= index || index <= c %If you want OR, here it is. If you want AND, use && instead of ||
... %your code
else
... %your alternative code
end

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by