How to plot a discrete time series object as stairs?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello,
I have a time series object which contains discrete data.
Now I want to plot this data as a stairstep graph.
The usual functions "stairs" and "datetick" do not work for me, since I want the detailed time stamp on the x-axis, even when I zoom into the graph.
Thank you very much for your help!
Sören
1 comentario
Respuestas (1)
Violaine Dalmas
el 12 de Mayo de 2023
Old question, but I think I've had the same one. Plot with timeseries is done by default with interpolation. To get a stairstep graph, you can change the interpmethod of the timeseries ts:
ts_stairs = setinterpmethod(ts,'zoh') ;
And then use standard command plot: plot(ts_stairs).
0 comentarios
Ver también
Categorías
Más información sobre Time Series 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!