Scilab 5.3.0
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.
remove_profiling
Supprime les instructions de "profiling" du code d'une fonction
Séquence d'appel
remove_profiling(funname)
Paramètres
- funname
Une chaine de caractères: le nom de la fonction
Description
remove_profiling(funname)
supprime les
instructions de "profiling" du code de la fonction dont le nom est
donné par funname
.
Exemples
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) //execution de la fonction profile(foo) //extraction des informations de profil remove_profiling("foo")
Voir Aussi
Auteur
- Serge Steer, INRIA
Fonctions utilisées
Cette fonction utilise les fonctions Scilab bytecode
and
walkbytecode
<< add_profiling | profiling | reset_profiling >> |