How to measure elapsed time in hh:mm:ss?
27 ビュー (過去 30 日間)
古いコメントを表示
Hi,
till now I measured elapsed time with:
tic;
% some code here
datestr(toc/86400,'HH:MM:SS')
Matlab R2022b says "datestr" is not recommended anymore. So how can I now convert timer-value (in seconds) to "hours-minutes-seconds"?
0 件のコメント
回答 (2 件)
Kunal Kandhari
2023 年 1 月 30 日
tic;
s = seconds(toc/86400);
s.Format = 'hh:mm:ss'
Hope this helps!
1 件のコメント
Stephen23
2023 年 1 月 30 日
The output of TOC is already in seconds... so dividing by the number of seconds in one day is not useful here.
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!