フィルターのクリア

How to put dates on de x-axis

2 ビュー (過去 30 日間)
FC93
FC93 2016 年 10 月 21 日
コメント済み: FC93 2016 年 10 月 22 日
I have a vector with different values. I want to plot it and that on the x axis the dates appear. I don't have any vectors with dates. The years should go from 1951 until 2014. How can I put now this years on the x axis? I only have the vector with the values that I want to plot, but this vector does not contain any dates.
Thank you for your help

採用された回答

Chaya N
Chaya N 2016 年 10 月 21 日
編集済み: Chaya N 2016 年 10 月 21 日
If each of the values in your vector were to be associated with their corresponding dates, then you could plot them. A simple way to do this would be to create a new vector with only the date values and plot as:
plot(<vector of dates>, <vector of data values>)
NOTE: The number of date values that you have should be equal to those in your vector.
For example, if your vector was some x = [1,2,3,4,5] (5 elements), then you would create date_vec = [1951:1955] (also should have 5 elements) and then use plot(date_vec, x).
  1 件のコメント
FC93
FC93 2016 年 10 月 22 日
Thank you for your help. This was exactly what I was searching.

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

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by