Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.3 - Português

Change language to:
English - Français - 日本語 -

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.

Ajuda Scilab >> Funções > profiling > remove_profiling

remove_profiling

remove instruções de profiling (análise de performance) de uma função

Seqüência de Chamamento

remove_profiling(funname)

Parâmetros

funname

string, o nome da função

Descrição

remove_profiling(funname) remove instruções de profiling (se houver alguma) da função de nome funname.

Exemplos

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) //executando a função
profile(foo) //extraindo informação de profile
remove_profiling("foo")

Autor

  • Serge Steer, INRIA

Funções Utilizadas

Esta função utiliza as funções Scilab bytecode e walkbytecode

<< profile profiling reset_profiling >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Oct 05 12:11:55 CEST 2011