How to put dates on de x-axis

3 visualizaciones (últimos 30 días)
FC93
FC93 el 21 de Oct. de 2016
Comentada: FC93 el 22 de Oct. de 2016
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

Respuesta aceptada

Chaya N
Chaya N el 21 de Oct. de 2016
Editada: Chaya N el 21 de Oct. de 2016
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 comentario
FC93
FC93 el 22 de Oct. de 2016
Thank you for your help. This was exactly what I was searching.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by