Borrar filtros
Borrar filtros

how to make if statement?

2 visualizaciones (últimos 30 días)
Latifah
Latifah el 11 de Feb. de 2023
Respondida: Voss el 11 de Feb. de 2023
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 comentario
Latifah
Latifah el 11 de Feb. de 2023
is it necessary to separate the two statements for x(6) and x(7)?

Iniciar sesión para comentar.

Respuesta aceptada

Voss
Voss el 11 de Feb. de 2023
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

Más respuestas (0)

Categorías

Más información sobre MATLAB Coder en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by