how to plot the time series data with dates showing in x axis
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Farshid Daryabor
el 18 de Mzo. de 2020
Comentada: Cris LaPierre
el 19 de Mzo. de 2020
I can plot time series but I am not able to show exact dates on x axis. I really appreciate anybody can help me. Thanks
figure
Ts = timeseries(Ta);
plot(Ts,'r')
grid on
grid minor
xlabel('Time','fontsize',14)
ylabel('Temperature (\circC)','fontsize',14)
Problem, cannot manage date lable, you can find attached file may show me how it's work.
0 comentarios
Respuesta aceptada
Cris LaPierre
el 18 de Mzo. de 2020
Editada: Cris LaPierre
el 18 de Mzo. de 2020
Convert your dates to the datetime data type. Then, when you plot using the datetime, the date will appear on the axis. You can set the display format of a datetime to show the date however you'd like.
load example.mat
Time = datetime(time,'ConvertFrom',"excel")
plot(Time,Ta)
14 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Calendar en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!