If I am runing a code has several iterations, Can I get the time of simulation after running for many minutes ?
2 ビュー (過去 30 日間)
古いコメントを表示
Simply, I want after stopping my simulation I want to show me the real time that took it
for example, 10 minutes
thanks in advance
0 件のコメント
採用された回答
Image Analyst
2022 年 4 月 17 日
startingTime = tic
% Your code
elapsedSeconds = toc(startingTime)
message = sprintf('The elapsed time = %.1f minutes.', elapsedSeconds/60);
uiwait(helpdlg(message));
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!