<< fun2string functions macr2lst >>

Removed >> Removed > 5-5-2 > functions > listfunctions

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

Bibliography

http://wiki.scilab.org/Scilab_function_variables%3A_representation%2C_manipulation


Report an issue
<< fun2string functions macr2lst >>