Plot a timeseries from array of dates
2 views (last 30 days)
Show older comments
Hello,
I have an array that is 6xN The 6 rows are YYYY, DD, MM, HH, MM, SS from timestamp data
I would like to know how can I plot this as a timeseries?
>> timelist([1 2 3 4 5 6],1)
ans =
2012
16
1
11
11
48
0 Comments
Accepted Answer
Oleg Komarov
on 31 Jul 2012
Edited: Oleg Komarov
on 31 Jul 2012
Convert each column into a proper numeric date:
datenum(timelist')
EDIT
datetick('x')
3 Comments
More Answers (0)
See Also
Categories
Find more on Time Series in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!