Plot not shown in for loop
조회 수: 1 (최근 30일)
이전 댓글 표시
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
댓글 수: 0
채택된 답변
Torsten
2022년 3월 8일
iter = 0;
for i=0:0.01:1
iter = iter + 1;
I(iter) = i;
if i<0.5
M(iter)=1
elseif i<0.7
M(iter)=0.5
else
M(iter)=0
end
end
plot(I,M,'LineWidth',2)
댓글 수: 0
추가 답변 (1개)
Jan
2022년 3월 8일
Exactly. Give Matlab a chance to update the output by inserting the command:
drawnow
inside the loop.
참고 항목
카테고리
Help Center 및 File Exchange에서 Graphics Performance에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!