How to format datastamp XTick?

4 visualizaciones (últimos 30 días)
Hildo
Hildo el 28 de Nov. de 2016
Respondida: Hildo el 29 de Nov. de 2016
How to format datastamp XTick in a Matlab plot to just hour:minute?
I tried to use
xtickformat('dd-MMM-yyyy')
But this function, appear, just to be present in the Matlab R2016b version.
  2 comentarios
dpb
dpb el 28 de Nov. de 2016
Which release are you using? What did you use for the time variable?
Hildo
Hildo el 28 de Nov. de 2016
I am using the R2016a. The time variable (x-axis) is created as
Tsim = 60*60*24; % [s].
Tstep = 60*5; % [s].
time = 0:Tstep:Tsim;
timeStamp = timeStamp = datetime( datestr(time/(24*60*60),'HH:MM:SS'),'InputFormat','HH:mm:ss');
I am plotting data in function of timeStamp ( plot(timeStamp,Y1) ).

Iniciar sesión para comentar.

Respuesta aceptada

Hildo
Hildo el 29 de Nov. de 2016
I solved this, founding this function
datetick('x','HH:MM')
The is present in the R2016a version.

Más respuestas (0)

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by