converting number to date number
48 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
wesso Dadoyan
le 1 Oct 2016
Réponse apportée : Steven Lord
le 1 Oct 2016
I have a column of dates that are number (double format) such as 19940127 how can i convert it to matlab numeric date that corresponds to 1994/01/27?
0 commentaires
Réponse acceptée
Star Strider
le 1 Oct 2016
Modifié(e) : Star Strider
le 1 Oct 2016
One approach:
dd = 19940127;
out = datestr(datenum(num2str(dd, '%d'), 'yyyymmdd'), 'yyyy/mm/dd')
out =
1994/01/27
To get the date number, just use part of that:
out_dn = datenum(num2str(dd, '%d'), 'yyyymmdd')
EDIT — Added ‘out_dn’.
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Dates and Time dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!