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.
参考
カテゴリ
Help Center および File Exchange で Interactive Control and Callbacks についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!