Can I find milliseconds from decimal time

2 views (last 30 days)
I have a bunch of times in decimal time and I am trying to format it in hours, minutes, seconds, and milliseconds. I know how to get in hh:mm:ss but I can't get milliseconds. Is this even possible and if so how can I do it? This is how i converted to hours, minutes and seconds.
HOD=decimaltime*24
HOD=hours(HOD)
HOD.Format='hh:mm:ss'
I need to find the difference between times so I need the answer to be in time format.

Accepted Answer

Star Strider
Star Strider on 14 Jul 2021
Perhaps:
HOD.Format='hh:mm:ss.SSS'
will do what you want.
See the Format property for details.
.
  1 Comment
Peter Perkins
Peter Perkins on 27 Jul 2021
It's worth saying that regardless of what display format
HOD=hours(HOD)
has, it's still the same value. The display format is only for ... well, display. I mean, that's important, but it only affects what you see.

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!