if with 2 conditions
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
i used this statement conditions before it worked well,
but this time Matlab says it work with logic condition only:
how to recover ?
thanks
0 Kommentare
Antworten (1)
Image Analyst
am 19 Sep. 2021
What does this say
whos Ree
It's probably a vector, not a scalar.
2 Kommentare
Image Analyst
am 19 Sep. 2021
You might want to use any or all():
if any(Ree > 100000 & Ree < 1000000) % Check if any of them is in range.
if all(Ree > 100000 & Ree < 1000000) % Checks that ALL of them are in range.
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!