if with 2 conditions
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
i used this statement conditions before it worked well,
but this time Matlab says it work with logic condition only:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/743154/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/743159/image.jpeg)
how to recover ?
thanks
0 comentarios
Respuestas (1)
Image Analyst
el 19 de Sept. de 2021
What does this say
whos Ree
It's probably a vector, not a scalar.
2 comentarios
Image Analyst
el 19 de Sept. de 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.
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!