how can I draw flashing arrow on the plot?
3 views (last 30 days)
Show older comments
Hello, how can I draw flashing arrow on the plot by use 'pause' function?
Thanks a lot!
0 Comments
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
3 Comments
Rik
on 19 Mar 2017
Sure, just add a set(t,'Visible','off') after the loop.
If this answer helped you, please mark it as accepted answer. It will give us both reputation points.
See Also
Categories
Find more on Graphics Objects 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!