Scilab 5.3.3
Aide Scilab >> Fonctions > listfunctions
listfunctions
properties of all functions in the workspace
Calling Sequence
[flist,compiled,profilable,called] = listfunctions([scope])
Arguments
- scope
string, "local" (default) or "global"
- flist
string array, names of all the function variables in the specified namespace
- compiled
boolean array, true if the corresponding element of flist is of type=13
- profilable
boolean array, true if the corresponding element of flist is of type=13, and additionally profiling information is found in the pseudocode of the function
- called
uint32 array, number of times the corresponding element of flist has been already called (nonzero only for profilable functions)
Description
Examples
recompilefunction("asinh","p") [flist,compiled,profilable,called] = listfunctions(); flist(profilable)
See Also
- function — définition d'une fonction Scilab
- exec — exécution d'un script (fichier de commandes)
- deff — on-line definition of function
- comp — pré-interprétation ou "compilation" de fonctions Scilab
- fun2string — generates ascii definition of a scilab function
- profile — extract execution profiles of a Scilab function
- recompilefunction — recompiles a scilab function, changing its type
Authors
- Enrico Segre
| << libraryinfo | Fonctions | macro >> |