how to convert 5.5 hour to 05:30:00 HH:MM:SS format?

3 ビュー (過去 30 日間)
Megha
Megha 2018 年 12 月 12 日
コメント済み: Megha 2018 年 12 月 26 日
how to convert 5.5 hour to 05:30:00 HH:MM:SS format?

採用された回答

Stephen23
Stephen23 2018 年 12 月 12 日
>> datestr(5.5/24,'HH:MM:SS')
ans = 05:30:00
  1 件のコメント
Megha
Megha 2018 年 12 月 26 日
Thank you it worked for me.

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

その他の回答 (1 件)

Stephan
Stephan 2018 年 12 月 12 日
編集済み: Stephan 2018 年 12 月 12 日
a = hours(5.5);
b = datetime('00:00:00','Format','HH:mm:ss');
result = a+b
result =
datetime
05:30:00

カテゴリ

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