Clear Filters
Clear Filters

how can I draw flashing arrow on the plot?

5 views (last 30 days)
Jinah Lee
Jinah Lee on 17 Mar 2017
Commented: Rik on 19 Mar 2017
Hello, how can I draw flashing arrow on the plot by use 'pause' function?
Thanks a lot!

Answers (1)

Rik
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
Jinah Lee
Jinah Lee on 17 Mar 2017
oh, can't I make a one flash for the arrow and make it gone?
Rik
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.

Sign in to comment.

Categories

Find more on Mathematics in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!