Create a flashing circle on a plot

3 visualizaciones (últimos 30 días)
Norman Vyne
Norman Vyne el 25 de Sept. de 2019
Comentada: Rena Berman el 28 de Oct. de 2019
I would like to create a flashing circle on a graph.
Any information to go about doing this?
  4 comentarios
Matt J
Matt J el 16 de Oct. de 2019
The orginal question was (paraphrased), "How do I put a blinking circle on a plot".
Rena Berman
Rena Berman el 28 de Oct. de 2019
(Answers Dev) Restored edit

Iniciar sesión para comentar.

Respuesta aceptada

Matt J
Matt J el 25 de Sept. de 2019
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 comentarios
Adam Danz
Adam Danz el 2 de Oct. de 2019
Editada: Adam Danz el 2 de Oct. de 2019
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 el 2 de Oct. de 2019
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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by