Is this the correct way to use "hold on" in a for loop?

57 ビュー (過去 30 日間)
PASUNURU  SAI VINEETH
PASUNURU SAI VINEETH 2021 年 8 月 5 日
コメント済み: Star Strider 2021 年 8 月 5 日
I am new to MATLAB and just trying to run a program for projection motion. I feel I am using the hold on and hold off in the correct way but I'm greeted with empty plot. Can someone please point out the mistake in the code?

回答 (2 件)

Yongjian Feng
Yongjian Feng 2021 年 8 月 5 日
You only need to hold on for the first plot call, right?

Star Strider
Star Strider 2021 年 8 月 5 日
Is this the correct way to use "hold on" in a for loop?
That is not the way I would do it.
Try this instead:
figure
hold on
for t = 1:5
dx = ...
dy = ...
plot(dx, dy, 'g-')
end
hold off
grid
.
  2 件のコメント
PASUNURU  SAI VINEETH
PASUNURU SAI VINEETH 2021 年 8 月 5 日
I tried your way but it didn't result in the plot either. I was able to do it by eliminating for loop but can't find a way when I have to use it.
Star Strider
Star Strider 2021 年 8 月 5 日
I canot run images of code, only actual code, so I could not run what was posted.
If you are plotting points, do this instead, in the loop:
plot(x, y, 'p')
to plot the points as stars without connecting lines.
.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

タグ

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by