how can I draw flashing arrow on the plot?
Show older comments
Hello, how can I draw flashing arrow on the plot by use 'pause' function?
Thanks a lot!
Answers (1)
Rik
on 17 Mar 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
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!