Break statements still result in the first condition breaking array element being shown - how can it be stopped from being generated?

Just a little annoying that matlab throws up the value that breaks a condition in the case below - can the code below be changed to solve this please?
For example
A = [ 2 3 4 5 6 9 9 10] %(elements of A matches t)
for t = 1:8;
B(t) = 3*A(t);
if B(t) >= 24;
break
elseif B(t) <= 3;
break
end
end
end
I would like to get from this B = [6 9 12 15 18]- the last three exceed 24.
Instead I get B = [6 9 12 15 18 27]
How can the code be changed so that B(6) = 27 will not be printed?
Many Thanks!

 채택된 답변

One solution:
A = [ 2 3 4 5 6 9 9 10] %(elements of A matches t)
for t = 1:8;
B(t) = 3*A(t);
if B(t) >= 24 || B(t)<=3
B(t)=[];
break
end
end

추가 답변 (1개)

As far as I understand, you don't care weather you reach the end of the A array or not. As soon as you hit the fist value that is out of (3 24) bound you want to break. Is that right? If so, then you can do the following:
A = [ 2 3 4 5 6 9 9 10] %(elements of A matches t)
for t = 1:length(A)
if 3*A(t) >= 24 || 3*A(t) <=3
break;
else
B(t) = 3*A(t);
end
end

카테고리

도움말 센터File Exchange에서 Cell Arrays에 대해 자세히 알아보기

질문:

2011년 12월 3일

Community Treasure Hunt

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

Start Hunting!

Translated by