convert a time data into a Epoch/Unix time
14 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hsinho Huang
le 8 Jan 2017
Commenté : Walter Roberson
le 7 Déc 2018
The time data are saved as DATE and TIME in the two columns of a Excel worksheet. How can I convert them into a Epoch/Unix time by Matlab?
DATE TIME
24-DEC-2016 04:31:04:59
0 commentaires
Réponse acceptée
Walter Roberson
le 8 Jan 2017
Modifié(e) : Walter Roberson
le 7 Déc 2018
posixtime( datetime(strcat(DATE, {' '}, TIME), 'InputFormat', 'dd-MMM-yyyy hh:mm:ss:SS') )
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!