FreeMat
|
Section: FreeMat Functions
The profile
function allows you to control the FreeMat profiler. It has two modes of operation. The first is to enable-disable the profiler. To turn on profiling:
profiler on
to turn off profiling, use
profiler off
Note that regardless of the state of the profiler, only functions and scripts are profiled. Commands entered on the command line are not profiled. To see information that has accumulated in a profile, you use the variant of the command:
profiler list
which lists current sorted profiling resuls. You can use this form to obtain profiler results as a cell array
r=profiler('list')
If you want to see current profile status issue a profile
command with no arguments.
profiler