How can I view Timeseries data?
47 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Meh
el 14 de Nov. de 2014
Comentada: Meh
el 17 de Nov. de 2014
I remember I once used matlab to view Timeseries date with Zoom, pan capability along the timeline.But coming to matlab after a pause I could not remember which tool it was ? does any body know it? It opens a new window where I can load and manupulate timeseris data.
0 comentarios
Respuesta aceptada
per isakson
el 14 de Nov. de 2014
Editada: per isakson
el 14 de Nov. de 2014
 
This is R2013a. Now I tested something new (to me): the   tstool.   However, the zoom and pan button are very similar. Code from documentation:
load count.dat;
count1=timeseries(count(:,1),1:24);
count1.Name = 'Oak St. Traffic Count';
count1.TimeInfo.Units = 'hours';
Obtain time of maximum value and add it as an event:
[~,index] = max(count1.Data);
max_event = tsdata.event('peak',count1.Time(index));
max_event.Units = 'hours';
% Add the event to the time series:
count1 = addevent(count1,max_event);
% Replace plot with new one showing the event:
tstool( count1 ) %%<<<<<<<<<<<<<<<<
2 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Time Series Collections 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!