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

Change language to:
Français - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab help >> Scilab > Variables > predef

predef

variable protection

Calling Sequence

n = predef()
oldnew = predef(n)
oldnew = predef('all')
oldnew = predef('clear')
variables_name = predef('names')

Description

Utility function used for defining "oldest" variables as "protected". Protected variables cannot be killed. They are not saved by the save command. The "oldest" are those appearing last in the who('get').

predef() gets the number of protected variables.

predef('a[ll]') sets all the variables protected, it also return the old and new value of protected variables number.

predef('c[lear]') unprotect all but the last 7 variables, it also return the old and new value of protected variables number.

predef(n) sets the max(n,7) last defined variables as protected, it also return the old and new value of protected variables number.

predef('names') returns a vector of strings with the name of protected variables.

predef('clear') removes the predefined variables from the list.

Remarks

Variable ans created automatically when expressions are not assigned is never protected by predef('all').

A number of protected variables are set in the start-up file SCI/etc/scilab.start. User may in particular set its own predefined variables in user's startup files SCIHOME/.scilab or SCIHOME/scilab.ini

Examples

errcatch(13, "continue") // Make sure we continue even when "clear a" will fail
a = 1;
predef("all");
clear a // fails
predef("clear")
clear a // works

See Also

  • clear — kills variables
  • save — Save a variable or a serie of variables in a binary file
  • ans — answer
  • startup — startup files
Report an issue
<< names Variables who >>

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 Apr 02 17:36:20 CEST 2013