Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2024.0.0 - English


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

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

  • predef — variable protection

History

VersionDescription
5.4.0 Previous value is returned as output argument when setting a new value.
Report an issue
<< feval Advanced functions function >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Oct 24 14:30:10 CEST 2023