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 - English

Please note that the recommended version of Scilab is 5.3.3. This page might be outdated.
See the recommended documentation of this function

Scilab manual >> Functions > profiling > remove_profiling

remove_profiling

プロファイル命令を関数から削除する.

呼び出し手順

remove_profiling(funname)

パラメータ

funname

文字列, 関数名

説明

remove_profiling(funname) は,プロファイル命令を (存在する場合,) funnameという名前の関数から 削除します.

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) //関数を実行
profile(foo) //プロファイル情報を展開
remove_profiling("foo")

作者

  • Serge Steer, INRIA

使用する関数

この関数は Scilab 関数 bytecode および walkbytecodeを使用しています.

<< profile profiling reset_profiling >>

Consortium Scilab (DIGITEO)
Scilab Enterprises

Copyright (c) 2011-2012 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jan 26 16:25:14 CET 2011