best way to enter only one time in a if block
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a for cycle
for n= 1: 100
x=rand()*10;
if x > 5
do something
end
end
When I execute this cycle it happens that if x is major than 5, the program enter in if clause. I would create a way that enter in if clause only one time even if the condition is true.which could be the best way?In Java I'd created this using boolean but matlab doesn't have boolean type
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2012년 9월 16일
편집: Azzi Abdelmalek
2012년 9월 16일
test=0
for n= 1: 100
x=rand()*10;
if x > 5 & test==0
%do something
test=1
end
end
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Testing Frameworks에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!