Scilab 5.5.2
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
指定した関数のプロファイルを無効にする
呼び出し手順
remove_profiling(funname)
引数
- funname
文字列, プロファイルした関数の名前
説明
remove_profiling
は,関数のプロファイルに
必要な命令を削除します.
例
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")
参照
- profile — 関数のプロファイル結果を返す
- plotprofile — 関数のプロファイルチャートを表示する
- remove_profiling — プロファイル命令を関数に追加.
- reset_profiling — 関数のプロファイル用カウンタをリセットする
使用する関数
この関数は Scilab 関数 bytecode
および
walkbytecode
を使用しています.
Report an issue | ||
<< profile | profiling | reset_profiling >> |