Break statements still result in the first condition breaking array element being shown - how can it be stopped from being generated?
2 次查看(过去 30 天)
显示 更早的评论
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!
0 个评论
采纳的回答
Fangjun Jiang
2011-12-3
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
0 个评论
更多回答(1 个)
Naz
2011-12-3
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
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!