Converting time format from hh mm ss to minutes or seconds

7 views (last 30 days)
I imported a time series in the format of HH:MM:SS from excel to matlab but it appeared as 0.4532343954 or something. How can I convert it to minutes or seconds starting zero.
The time data are in 5 seconds intervals.

Accepted Answer

Star Strider
Star Strider on 17 Mar 2019
Try this:
Tv = datetime(0.4532343954, 'Format','HH:mm:SS', 'ConvertFrom','excel')
Tv =
datetime
10:52:45

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!