File: predef.cat

package info (click to toggle)
scilab 2.6-4
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 54,632 kB
  • ctags: 40,267
  • sloc: ansic: 267,851; fortran: 166,549; sh: 10,005; makefile: 4,119; tcl: 1,070; cpp: 233; csh: 143; asm: 135; perl: 130; java: 39
file content (33 lines) | stat: -rw-r--r-- 1,111 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
predef            Scilab Group            Scilab Function            predef
NAME
   predef - variable protection
  
CALLING SEQUENCE
 n=predef()
 oldnew=predef(n)
 oldnew=predef('all')
 oldnew=predef('clear')
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\ fVwho('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.
  
REMARK
   A number of protected variables are set in the start-up file scilab.star.
   User may in particular set its own predefined variables in user's
  startup file home/.scilab 
  
SEE ALSO
   clear, save