plotprofile — extracts and displays execution profiles of a Scilab function
plotprofile(fun)
a Scilab compiled function, or a function name (string), or an array of function names
To use plotprofile
, the Scilab function must have been prepared for
profiling (see exec).
When such a function is executed, the system
counts how many times each line is executed and how much cpu time is
spent executing each line. This data is stored within the
function data structure. The function plotprofile
in an interactive
command which displays this results in a graphic window. When a line
is clicked, the source of the function is displayed with the selected line
highlighted.
NOTE: you have to click on the "Exit" item in the graphics windows to exit from "plotprofile".
The function code is regenerated with fun2string
and dumped into
a temporary file.