how can I draw flashing arrow on the plot?
3 次查看(过去 30 天)
显示 更早的评论
Hello, how can I draw flashing arrow on the plot by use 'pause' function?
Thanks a lot!
0 个评论
回答(1 个)
Rik
2017-3-17
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 个评论
Rik
2017-3-19
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.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!