How can I convert a time vector of HH:SS to a decimal?

1 回表示 (過去 30 日間)
Newbie
Newbie 2021 年 8 月 30 日
回答済み: Steven Lord 2021 年 8 月 30 日
I have a vector of time in format HH:SS in a table and I want to convert it to a decimal number.
For example:
03:30 = 3.5
04:45 = 4.75
How can I do that?
Thanks.
  2 件のコメント
Jan
Jan 2021 年 8 月 30 日
Are you sure the format is HH:SS and not HH:mm?
Newbie
Newbie 2021 年 8 月 30 日
Sorry, you are right. It is HH:mm

サインインしてコメントする。

採用された回答

Steven Lord
Steven Lord 2021 年 8 月 30 日
If you have them stored as a duration array just use the hours function.
du = duration({'03:30', '04:45'}, 'InputFormat', 'hh:mm')
du = 1×2 duration array
03:30:00 04:45:00
hours(du)
ans = 1×2
3.5000 4.7500

その他の回答 (1 件)

Jan
Jan 2021 年 8 月 30 日
v = datetime({'03:30', '04:45'}, 'InputFormat', 'HH:mm')
v = 1×2 datetime array
30-Aug-2021 03:30:00 30-Aug-2021 04:45:00
hour(v) + minute(v) / 60
ans = 1×2
3.5000 4.7500

カテゴリ

Help Center および File ExchangeMathematics についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by