Plot not shown in for loop
显示 更早的评论
The plot is not appearing for this simple loop
for i=0:0.01:1
if i<0.5
M=1
elseif i<0.7
M=0.5
else
M=0
end
plot(i,M,'LineWidth',2)
hold on
end
采纳的回答
更多回答(1 个)
Jan
2022-3-8
Exactly. Give Matlab a chance to update the output by inserting the command:
drawnow
inside the loop.
类别
在 帮助中心 和 File Exchange 中查找有关 Numerical Integration and Differentiation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!