If statement display problem

조회 수: 16 (최근 30일)
Anna
Anna 2017년 4월 1일
댓글: Star Strider 2017년 4월 1일
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?

채택된 답변

Star Strider
Star Strider 2017년 4월 1일
Use the all function:
Fr = 0.0001*rand(1,10)+0.2; % Create ‘Fr’
if all((Fr > 0.1) & (Fr < 0.3))
disp('0.10 < Fr < 0.30. Criteria met.')
else
disp(' Fr outside interval. Criteria not met.')
end
Change some of the elements of ‘Fr’ her to test it. Your code works with this small tweak.
  댓글 수: 2
Anna
Anna 2017년 4월 1일
Thank you very much!
Star Strider
Star Strider 2017년 4월 1일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2017년 4월 1일
No loop.
if all(Fr>0.1 & Fr<0.3)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by