How to convert decimal to time?
Mostrar comentarios más antiguos
eg: 7.6 (7+0.6*60) = 7:36
Respuesta aceptada
Más respuestas (1)
Peter Perkins
el 13 de Oct. de 2017
Editada: Peter Perkins
el 13 de Oct. de 2017
This depends on what you mean by "time". Likely, the most useful thing is a duration:
>> t = hours(7.6)
t =
duration
7.6 hr
>> t.Format = 'hh:mm:ss'
t =
duration
07:36:00
Categorías
Más información sobre MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!