Akzeptierte Antwort

Scott MacKenzie
Scott MacKenzie am 24 Jun. 2021
Bearbeitet: Scott MacKenzie am 24 Jun. 2021

1 Stimme

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 Kommentar

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Mathematics finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by