Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português do Brasil - Japanese -
Scilab help >> Functions > profiling > add_profiling

add_profiling

Adds profiling instructions to a function.

Calling Sequence

add_profiling(funname)

Arguments

funname

A character string, the name of the function

Description

add_profiling(funname) Adds profiling instructions to the function named funname. Then when this function is run the number of calls, the time spent is stored for each function line.

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

See Also

  • profile — extract execution profiles of a Scilab function
  • plotprofile — extracts and displays execution profiles of a Scilab function
  • remove_profiling — Removes profiling instructions toout of a function.
  • reset_profiling — Resets profiling counters of a function.

Authors

  • Serge Steer, INRIA

Used Functions

This function uses the Scilab functions bytecode and walkbytecode

Comments


Add a comment:
Please login to comment this page.

<< profiling profiling plotprofile >>

Consortium Scilab (DIGITEO)
Scilab Enterprises

Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Oct 05 12:10:04 CEST 2011