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 Kommentar

Latifah
Latifah am 11 Feb. 2023
is it necessary to separate the two statements for x(6) and x(7)?

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Voss
Voss am 11 Feb. 2023

0 Stimmen

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

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB Coder finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2021a

Gefragt:

am 11 Feb. 2023

Beantwortet:

am 11 Feb. 2023

Community Treasure Hunt

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

Start Hunting!

Translated by