Hi, I'm trying to find a program line which will make matlab dump numbers that don't respond to an if statement.
1 次查看(过去 30 天)
显示 更早的评论
if abs(z(1,end,n)-Z)<=Err
hold on
figure(1)
plot(z(1,:),z(3,:))
xlabel('x')
ylabel('y')
axis ([0 12000 0 10000])
else
%Dump, don't plot.
3 个评论
Walter Roberson
2012-11-30
编辑:Walter Roberson
2012-11-30
You want it to stop all further plots? Or you want it to continue on with the next "n" ? Or you just don't want to plot that one line?
The code you already give will have it skip one line.
Earlier on you assign to z(:,i,n) but in that if you refer to z(1,end,n) which seems to rely upon the fact that you did not pre-allocate z and so "end" refers to the same location as "i". Why not just code as "i", z(1,i,n) and avoid the confusion ?
Why are you referring to z in 3 dimensional form as you calculate it, but in 2 dimensional form when you plot it?
回答(1 个)
dpb
2012-12-1
If you want to abort the loop see
doc break
If you want to keep going then as Walter notes the empty ELSE clause skips effectively (of course you can just use an IF...END w/o the ELSE too)...
If it's something else, the description isn't terribly precise...
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!