So I need to sort a time data out. First I have a column of data e.g 24401 means 244th days and 01 means the first 30 minutes. So in one day I have 48 data and I have a month full of time. How can I convert the time into hours To show on graph easier

1 次查看(过去 30 天)
24401 means 244th days and the first 30 minutes of the day.
24448 means 244th days and the 24th hours
So it goes up by 30 Minutes interval. How can I convert the 5 digit code into hours to plot it on the graph. I don’t want the x axis to be 244401 I want it to be 0.5 hour instead.

采纳的回答

Peter Perkins
Peter Perkins 2018-4-30
I would think that you would just do this:
>> .5*(x - 100*(round(x/100)))
ans =
0.5 24

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Dates and Time 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by