Converting date string to number
Afficher commentaires plus anciens
I have a vector of the following format 01-Jul-1980 00:00:00 how can I convert to a matlab date number?
1 commentaire
Danielle Leblance
le 11 Fév 2018
Réponses (3)
Danielle Leblance
le 11 Fév 2018
0 votes
Jan
le 11 Fév 2018
S = '01-Jul-1980 00:00:00';
datenum(S) % Old
datetime(S) % Modern
Walter Roberson
le 11 Fév 2018
You have a datetime array. You can convert it to serial datenum using
datenum(issuedate)
Note that this is typically not required any more, but can be required for some plotting reasons from R2013b to R2015b.
Catégories
En savoir plus sur Dates and Time dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!