- Aide de Scilab
- Fonctions avancées
- Built-in & external
- Libraries
- profiling
- argn
- bytecode
- bytecodewalk
- comp
- exec
- execstr
- function
- functions
- getd
- macr2tree
- macrovar
- mode
- sciargs
- code2str
- deff
- edit
- fun2string
- funcprot
- head_comments
- listfunctions
- macr2lst
- macro
- overloading
- recompilefunction
- str2code
- tree2code
- varargin
- varargout
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
properties of all functions in the workspace
Calling Sequence
[flist,compiled,profilable,called] = listfunctions([scope])
Arguments
- scope
a string,
"local"
(default) or"global"
.- flist
a string array, names of all the function variables in the specified namespace.
- compiled
a boolean array, true if the corresponding element of
flist
is of type 13.- profilable
a 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
an 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
- macr2lst — function to list conversion
- profile — Renvoie les résultats du profiling d'une fonction
- recompilefunction — recompiles a scilab function, changing its type
- who — liste des variables
Report an issue | ||
<< head_comments | Fonctions avancées | macr2lst >> |