So, I\'m beginning to use timeseries in MATLAB and I\'m kinda stuck.
I have a list of timestamps of events which I imported into MATLAB. It\'s now a 3000x25 array wh
I don't know what +00:00 means (maybe time zone?), but you can simply convert your string timestamps into numerical format:
+00:00
>> t = datenum('2000-01-01T00:01:04+00:00', 'yyyy-mm-ddTHH:MM:SS') t = 7.3049e+005 >> datestr(t) ans = 01-Jan-2000 00:01:04