- Aide Scilab
- Scilab
- Mots clés Scilab
- TMPDIR
- abort
- argn
- banner
- boolean
- break
- clear
- clearglobal
- comp
- debug
- errcatch
- errclear
- error
- exists
- exit
- external
- extraction
- getos
- getshell
- gstacksize
- ieee
- insertion
- inv_coeff
- iserror
- isglobal
- macr2tree
- matrices
- matrix
- mode
- mtlb_mode
- names
- null
- pause
- perl
- poly
- predef
- quit
- rational
- resume
- sciargs
- scilab
- stacksize
- startup
- symbols
- testmatrix
- type
- typename
- user
- varn
- what
- where
- whereami
- who
- whos
- with_atlas
- with_javasci
- with_macros_source
- with_pvm
- add_demo
- clearfun
- continue
- delbpt
- dispbpt
- edit
- error_table
- format
- funcprot
- funptr
- getdebuginfo
- getmd5
- getmemory
- getmodules
- getscilabmode
- getvariablesonstack
- getversion
- intppty
- lasterror
- macr2lst
- newfun
- readgateway
- setbpt
- ver
- warning
- who_user
- with_module
- with_texmacs
- with_tk
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.
comp
pré-interprétation ou "compilation" de fonctions Scilab
Séquence d'appel
comp(function [,opt])
Paramètres
- function
une fonction non "compilée" (type 11)
- opt
flag with value 0 (default) or 2.
Description
comp(function)
"compile" la fonction
function
. Les fonctions "compilées" et
interprétées sont équivalentes mais les fonctions
"compilées" sont plus rapides. Les fonctions fournies dans les
bibliothèques standard de Scilab sont "compilées".
La définition en line des fonction ainsi que la forme
courte des fonctions exec
et
deff
produisent des fonctions
compilées. L'usage de la fonction comp
est
donc réservé a des usages très particuliers. Pour
générer des fonction non compilées, il faut appeler les
fonctions exec ou deff avec l'option
"n"
.
L'option opt==2 requiert que la compilation produise aussi les instructions de profilage.. A noter qu'il est possible d'ajouter ces instructions de profilage à une fonction déjà compileée en utilisant la fonction add_profiling.
L'option opt==1 est obsolete est équivalente à opt==0.
Voir aussi
- deff — on-line definition of function
- exec — exécution d'un script (fichier de commandes)
- function — définition d'une fonction Scilab add_profiling — Ajoute les instructions de "profiling" au code d'une fonction profile — extract execution profiles of a Scilab function
<< clearglobal | Scilab | debug >> |