how to make if statement?

2 ビュー (過去 30 日間)
Latifah
Latifah 2023 年 2 月 11 日
回答済み: Voss 2023 年 2 月 11 日
i want to make x(6) and x(7) condition with if , and it's look wrong, can you help me to fix it
H=0;
if (x(6)>0,x(7)>0)
H = 1;
  1 件のコメント
Latifah
Latifah 2023 年 2 月 11 日
is it necessary to separate the two statements for x(6) and x(7)?

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

採用された回答

Voss
Voss 2023 年 2 月 11 日
If you want H to be 1 when x(6)>0 and x(7)>0, then:
H=0;
if x(6)>0 && x(7)>0
H = 1;
end
If you want H to be 1 when x(6)>0 or x(7)>0, then:
H=0;
if x(6)>0 || x(7)>0
H = 1;
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB Coder についてさらに検索

タグ

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by