Scilab 6.0.1
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
funcprot
switch scilab functions protection mode
Syntax
funcprot(prot) previousprot = funcprot(prot) prot = funcprot()
Arguments
- prot
an integer with possible values 0, 1, 2
- previousprot
an integer with possible values 0, 1, 2 returns previous value
Description
Scilab functions are variable, funcprot
allows the user to specify
what Scilab do when such variables are redefined.
If
prot == 0
nothing special is done.If
prot == 1
Scilab issues a warning message when a function is redefined (default mode).If
prot == 2
Scilab issues an error when a function is redefined.
Examples
History
Version | Description |
5.4.0 | Previous value is returned as output argument when setting a new value. |
Report an issue | ||
<< feval | Fonctions avancées | function >> |