how can I draw flashing arrow on the plot?
Mostrar comentarios más antiguos
Hello, how can I draw flashing arrow on the plot by use 'pause' function?
Thanks a lot!
Respuestas (1)
Rik
el 17 de Mzo. de 2017
t = text(0.5,0.5,'\leftarrow');
for blinks=1:10
set(t,'Visible','off')
pause(0.5)
set(t,'Visible','on')
pause(0.5)
end
Categorías
Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!