Datenum date conversion troubles
Mostra commenti meno recenti
I have a matlab file of timestamps called d that looks like this...
'7/31/2012 2:35:00 PM'
'7/31/2012 2:36:00 PM'
'7/31/2012 2:37:00 PM'
'7/31/2012 2:38:00 PM'
'7/31/2012 2:39:00 PM'
'7/31/2012 2:40:00 PM'
and I am trying to put these timestamps into matlab so I can graph the data. so I have tried
CR100.time = datenum(d(:,1),'mm/dd/yyyy HH:MM:SS Ww')
But I am getting the response...
??? Error using ==> datenum at 182 DATENUM failed.
Caused by: Error using ==> dtstr2dtnummx Failed on converting date string to date number.
Any clue how to import these timestamps?
Also do you know how I can save an excel file in a matlab script.
1 Commento
the cyclist
il 31 Lug 2012
Modificato: the cyclist
il 31 Lug 2012
Is d a cell array of strings?
Risposte (3)
the cyclist
il 31 Lug 2012
Modificato: the cyclist
il 31 Lug 2012
I suspect it is the 'Ww' that is tripping you up. Try
datenum(d,'mm/dd/yyyy HH:MM:SS PM')
Thomas
il 31 Lug 2012
Just try something like:
str={'7/31/2012 2:35:00 PM'
'7/31/2012 2:36:00 PM'
'7/31/2012 2:37:00 PM'
'7/31/2012 2:38:00 PM'
'7/31/2012 2:39:00 PM'
'7/31/2012 2:40:00 PM'}
date_time=datenum(str)
Aaron
il 31 Lug 2012
0 voti
3 Commenti
the cyclist
il 31 Lug 2012
This would have been better placed as a comment after one of the answers here (which one?) than as an answer. What is the data type of d? It matters for the answer. My solution works for the entries in the list you gave. Do you have mixed types in your data?
Aaron
il 31 Lug 2012
the cyclist
il 31 Lug 2012
My advice would be to use my code on subset of d [such as d(1:5), then d(6:10), etc] until you can identify some entries of d that are causing the problem.
Categorie
Scopri di più su Time Series Objects in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!