Create a flashing circle on a plot

3 ビュー (過去 30 日間)
Norman Vyne
Norman Vyne 2019 年 9 月 25 日
コメント済み: Rena Berman 2019 年 10 月 28 日
I would like to create a flashing circle on a graph.
Any information to go about doing this?
  4 件のコメント
Matt J
Matt J 2019 年 10 月 16 日
The orginal question was (paraphrased), "How do I put a blinking circle on a plot".
Rena Berman
Rena Berman 2019 年 10 月 28 日
(Answers Dev) Restored edit

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

採用された回答

Matt J
Matt J 2019 年 9 月 25 日
Something like this is a possibility:
plot(1:5);
hcirc=drawcircle;
while 1
hcirc.Visible='on';
pause(0.2);
hcirc.Visible='off';
pause(0.2);
end
  8 件のコメント
Adam Danz
Adam Danz 2019 年 10 月 2 日
編集済み: Adam Danz 2019 年 10 月 2 日
Did you enter a "center" containing 2 values and a radius? It's difficult to help you when we don't have any information about what might be causing the problem. What's line 4? What inputs did you provide?
Norman Vyne
Norman Vyne 2019 年 10 月 2 日
I inputted the exact code above and clicked run, then I got an error stating that there is not enough input information in the "x=" part of the function.

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

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by