Compute execution time without printing statement?
古いコメントを表示
I am wondering if it is possible to compute the execution time using tic and toc statement but eliminating printing time?
I have a big program ... and it has a lot of printing statements in the middle ...
Is it possible to count the time without the time consumed by printing? or should I stop each printing statement one by one?
2 件のコメント
James Tursa
2019 年 9 月 4 日
Do you mean you have lots of disp( ) or fprintf( ) etc. statements, but want to somehow not count them in the timing results?
Seereen
2019 年 9 月 4 日
回答 (1 件)
Fabio Freschi
2019 年 9 月 4 日
編集済み: Fabio Freschi
2019 年 9 月 4 日
You can just save the value in a variable
timerValue = tic;
% something very useful to do
tstop = toc(timerValue);
4 件のコメント
Fabio Freschi
2019 年 9 月 4 日
編集済み: Fabio Freschi
2019 年 9 月 4 日
The use of timerValue allows you to use different tic/toc statements without confusion or miscalculation
Seereen
2019 年 9 月 4 日
Fabio Freschi
2019 年 9 月 4 日
ok, sorry...
Count the time for printf wit tic/toc like I said and subctract the value from the time of computation
Rik
2019 年 9 月 4 日
You could also try to shadow the fprintf function, but that is a dangerous business.
カテゴリ
ヘルプ センター および File Exchange で Scope Variables and Generate Names についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!