Show time labels on points in a quiver plot (inside the plot)

Is it possible to label certain points, maybe periodically, on a quiver plot? I would like to show the time or date of periodic points on the plot to make it easier to navigate or distinguish. Any help appreciated! :]

 採用された回答

Chad Greene
Chad Greene 2014 年 9 月 5 日

0 投票

I don't think quiver has any built-in labeling capabilities, but you could manually add text to any location(s) with text(x,y,'text string'). Here's an example with several text labels:
x = 1:3;
y = [5 2 7];
strings = {'string 1';'string 2';'string 3'};
plot(x,y,'r.')
axis([0 4 1 8])
text(x,y,strings)

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeVector Fields についてさらに検索

質問済み:

2014 年 9 月 5 日

コメント済み:

2014 年 9 月 5 日

Community Treasure Hunt

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

Start Hunting!

Translated by