The code does not see else condition

 Respuesta aceptada

Scott MacKenzie
Scott MacKenzie el 24 de Jun. de 2021
Editada: Scott MacKenzie el 24 de Jun. de 2021
You've got an error in how you setup the if-expressions. For example, you need to change the first if-expression from
320 < wavelength < 325
to
320 < wavelength && wavelength < 325
Change the others in a similar manner, and try again.
To explain, note that
320 < wavelength < 325
is syntactically correct, but is the same as
(320 < wavelength) < 325
and reduces to either
0 < 325
or
1 < 325
I doubt this is what you intended.

1 comentario

Onur Hakverdi
Onur Hakverdi el 24 de Jun. de 2021
320 < wavelength && wavelength < 325 I tried this but It gives error.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Mathematics en Centro de ayuda y File Exchange.

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