Scilab 5.5.2
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
reset_profiling
Resets profiling counters of a function.
Calling Sequence
reset_profiling(funname)
Arguments
- funname
A character string, the name of the function
Description
reset_profiling(funname)
Resets profiling counters (if any) of the function
named funname
.
Examples
function x=foo(a, n) x=0; for i=1:n if x<10 then x=x+a else x=x+1 end end x=x^2+1 endfunction add_profiling("foo") foo(0.1,100) //run the function profile(foo) //extract profile information reset_profiling("foo") profile(foo) //extract profile information
See Also
- profile — Returns the profiling results of a function
- plotprofile — Displays the profiling charts of a function
- add_profiling — Enables the profiling of a function
- reset_profiling — Resets profiling counters of a function.
- remove_profiling — Disables the profiling of a function
Used Functions
This function uses the Scilab functions bytecode
and
walkbytecode
Report an issue | ||
<< remove_profiling | profiling | showprofile >> |