<< feval Fonctions avancées function >>

Scilab Help >> Fonctions avancées > funcprot

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.

Examples

previousprot = funcprot(1)
deff('x = foo(a)','x = a;')
deff('x = foo(a)','x = a + 1;')
foo = 33
funcprot(0)
deff('x = foo(a)', 'x = a;')
deff('x = foo(a)', 'x = a + 1;')
foo = 33
funcprot(previousprot)

See Also

History

VersionDescription
5.4.0 Previous value is returned as output argument when setting a new value.

Report an issue
<< feval Fonctions avancées function >>