[Matlab] How to obtain the computation time of a function

  • #1
9
2
Hi, all.

I have a function in Matlab. I'd like to calculate the computation time of the function. How can I obtain the time? I think Matlab must include related functions as its internal functions.

Thanks in advance.
 
  • Like
Likes rama hasan
  • #2
Thanks, but "tic" and "toc" provide the elapsed time in seconds. Do you know a way that provides the elapsed time in milliseconds ?

Thanks in advance.
 
  • Like
Likes rama hasan
  • #3
A quick and easy way to do this is to use "cputime" to calculate the elapsed time. For instance, suppose that you wanted to determine how long it takes for the MATLAB benchmark to run. Then you'd use the following:

Code:
time1 = cputime;
bench;
cputime - time1

Obviously, you can substitute "bench" for your function to determine how long it takes to run. See "doc cputime" for more information.
 
  • Like
Likes rama hasan
  • #4
Hello,
The tool in MATLAB built for this purpose is: "Profile".
In the MATLAB search at: "http://www.mathworks.com/" [Broken]
and typing "profile" will bring up the information.

Main commands are turning it on:
profile on
and viewing the results (after some execution):
profile viewer

kind regards.
 
Last edited by a moderator:

Suggested for: [Matlab] How to obtain the computation time of a function

Replies
8
Views
1K
Replies
2
Views
962
Replies
4
Views
893
Replies
4
Views
472
Replies
1
Views
661
Replies
4
Views
753
Replies
32
Views
1K
Replies
1
Views
855
Back
Top