How to convert decimal to time?

81 views (last 30 days)
oshawcole
oshawcole on 10 Oct 2017
Edited: Peter Perkins on 13 Oct 2017
eg: 7.6 (7+0.6*60) = 7:36

Accepted Answer

per isakson
per isakson on 10 Oct 2017
Edited: per isakson on 10 Oct 2017
datestr takes days as input. Thus, divide by 24.
>> val = 7.6;
>> datestr( val/24, 'HH:MM' )
ans =
07:36
I guessed that seven is hours, not minutes.

More Answers (1)

Peter Perkins
Peter Perkins on 13 Oct 2017
Edited: Peter Perkins on 13 Oct 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

Categories

Find more on Dates and Time in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!