for loop running time analysis
1 回表示 (過去 30 日間)
古いコメントを表示
Profiler shows that "end" line takes a large part of the running time of for loop. Why? Do jump instructions really run longer than calculation process?
0 件のコメント
採用された回答
Walter Roberson
2020 年 5 月 15 日
When MATLAB notices that patterns of code have been used that can be made more efficient by calling into the high-performance mathematically libraries such as MKL, then MATLAB does not execute the given code line-by-line, and it allocates the total time to the end-point of the section that it optimized. Also, the overhead of running the for loop is allocated against the end statement
0 件のコメント
その他の回答 (1 件)
rajat aggarwal
2020 年 5 月 15 日
Yes jump statement takes more time then usual line and here in your case you are using end statement in a loop. Jump statement hinders the workflow of a program. Usually Program counter jumps from one position to another position and start executing the instruction stored there. It requires time. Therefore jump statements take more time than usual statemtents.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!