If statement display problem
Show older comments
Hello, I am checking if all values of a vector Fr are within a certain range as shown:
% code as follows:
for i = 1:1:length(loop)
if Fr(i) > 0.1 && Fr(i) < 0.3
disp('0.10 < Fr < 0.30. Criteria met.')
else
disp(' Fr outside interval. Criteria not met.')
end
end
Here Fr is a vector with length(loop) values. I want the code to show the message only once if all the elements of Fr are within the range. If not, the message for Fr outside the interval should also only be shown once.
In other words, when running the code I want only one message to be displayed. Either all values are within the interval or they are not.
Is there a way of doing this?
Accepted Answer
More Answers (1)
Walter Roberson
on 1 Apr 2017
No loop.
if all(Fr>0.1 & Fr<0.3)
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!