Nom

remove_profiling — Removes profiling instructions toout of a function.

Calling Sequence

remove_profiling(funname)

Parameters

funname

A character string, the name of the function

Description

remove_profiling(funname) Removes profiling instructions (if any) out 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
remove_profiling("foo")
 

See Also

profile, plotprofile, remove_profiling, reset_profiling

Authors

Serge Steer, INRIA

Used Functions

This function uses the Scilab functions bytecode and walkbytecode