フィルターのクリア

displaying time on plot

4 ビュー (過去 30 日間)
davit petraasya
davit petraasya 2016 年 3 月 20 日
コメント済み: davit petraasya 2016 年 3 月 24 日
Hi Does anyone know how to display points time on plot? I have 15 points(15 x and 15 y) and 15 different years(1980,1982,1983,...) corresponding to the points. I can plot the point like plot(x,y,'.r').How I may display the years of each point on plot?
Thanks a lot!

採用された回答

Image Analyst
Image Analyst 2016 年 3 月 20 日
Use the text() function. There are a number of date and time functions that you might want to use in conjunction with sprintf() to create a string to display on your graph at some (x,y) location with text().
  1 件のコメント
davit petraasya
davit petraasya 2016 年 3 月 24 日
Thank Image Analyst. I thought there would be function just appears all points data at once. Well,Manually textbox also worked :).

サインインしてコメントする。

その他の回答 (1 件)

Star Strider
Star Strider 2016 年 3 月 20 日
If you want to display all the years on the x-axis, use the set function:
For example:
x = [1980 1982 1983 1986 1987];
y = rand(1, 5);
figure(1)
plot(x, y)
set(gca, 'XTick',x)
grid
  1 件のコメント
davit petraasya
davit petraasya 2016 年 3 月 24 日
Thanks Star again for your concern!

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by