How to know time that spent matlab in solving problem?
Show older comments
How to know the time that spent matlab in solving or calculating the problem?
Answers (2)
help profile
or
help tic
Running tic and toc will simply tell you how much time passed between the respective commands.
Running profile on and profile viewer will give more detailed information, including the time spent in each subfunction of your code. It can be very helpful for finding bottlenecks.
Azzi Abdelmalek
on 19 Aug 2014
0 votes
Use tic toc
Categories
Find more on App Building in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!