フィルターのクリア

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 Center および File ExchangeDates and Time についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by