How to convert time stamp 11:21:17.155 into seconds in MATLAB??

3 ビュー (過去 30 日間)
Suvvi Kuppur Narayana Swamy
Suvvi Kuppur Narayana Swamy 2021 年 1 月 19 日
コメント済み: Stephen23 2021 年 1 月 19 日
I am quite not sure how to covert time stamps of this sort into seconds in MATLAB. Any help is appreciated.
Thank you
  2 件のコメント
Mathieu NOE
Mathieu NOE 2021 年 1 月 19 日
hello
try this :
a = '11:21:17.155';
n = split(a,':');
duration_seconds = str2num(n{1})*3600+str2num(n{2})*60+str2num(n{3})
Stephen23
Stephen23 2021 年 1 月 19 日
a = '11:21:17.155';
b = [60*60,60,1]*str2double(split(a,':'))
b =
40877.155

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

採用された回答

Stephan
Stephan 2021 年 1 月 19 日
format longG
a = '11:21:17.155';
b = seconds(duration(a,'InputFormat','hh:mm:ss.SSS'))
results in:
b =
40877.155

その他の回答 (1 件)

Stephen23
Stephen23 2021 年 1 月 19 日
The most efficient solution:
a = '11:21:17.155';
b = [60*60,60,1]*sscanf(a,'%f:')
b =
40877.155

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by