Scilab 5.5.0
- Scilabヘルプ
- Functions
- Built-in & external
- Libraries
- profiling
- argn
- bytecode
- bytecodewalk
- comp
- deff
- edit
- exec
- execstr
- fun2string
- funcprot
- function
- functions
- getd
- head_comments
- listfunctions
- macr2lst
- macr2tree
- macro
- macrovar
- mode
- overloading
- recompilefunction
- sciargs
- tree2code
- varargin
- varargout
- code2str
- str2code
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.
listfunctions
ワークスペースの全ての関数のプロパティ
呼び出し手順
[flist,compiled,profilable,called] = listfunctions([scope])
パス名
- scope
文字列,
"local"
(デフォルト) または"global"
- flist
文字列の配列, 指定した名前空間にある全関数変数の名前
- compiled
論理値配列, 対応する
flist
の要素が型=13の場合に真- profilable
論理値配列, 対応する
flist
の要素が型=13の場合に真となり, プロファイル情報が関数の擬似コードの中に追加されます.- called
uint32 配列,
flist
の対応する要素がコールされた回数 (プロファイル可能な関数の場合のみ非ゼロ)
説明
例
recompilefunction("asinh","p") [flist,compiled,profilable,called] = listfunctions(); flist(profilable)
参照
- function — 関数定義をオープンする
- exec — スクリプトファイルを実行する
- deff — 関数のオンライン定義
- comp — scilab 関数のコンパイル
- fun2string — Scilab関数のアスキー定義を生成する
- macr2lst — リスト変換用の関数
- profile — Scilab関数の実行プロファイルを展開
- recompilefunction — 型を変更し,Scilab関数を再コンパイルする
- who — 変数の一覧
参考文献
http://wiki.scilab.org/Scilab_function_variables%3A_representation%2C_manipulation
Report an issue | ||
<< head_comments | Functions | macr2lst >> |