How can I convert a time vector of HH:SS to a decimal?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Newbie
le 30 Août 2021
Réponse apportée : Steven Lord
le 30 Août 2021
I have a vector of time in format HH:SS in a table and I want to convert it to a decimal number.
For example:
03:30 = 3.5
04:45 = 4.75
How can I do that?
Thanks.
2 commentaires
Réponse acceptée
Steven Lord
le 30 Août 2021
If you have them stored as a duration array just use the hours function.
du = duration({'03:30', '04:45'}, 'InputFormat', 'hh:mm')
hours(du)
0 commentaires
Plus de réponses (1)
Jan
le 30 Août 2021
v = datetime({'03:30', '04:45'}, 'InputFormat', 'HH:mm')
hour(v) + minute(v) / 60
0 commentaires
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!