File: clear.cat

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (22 lines) | stat: -rw-r--r-- 664 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

clear(1)                       Scilab Function                       clear(1)
NAME
  clear - kills variables

CALLING SEQUENCE
  clear a

DESCRIPTION
  This command kills variables which are not protected.  It removes the named
  variables from the environment.  By itself clear kills all the variables
  except the variables protected by predef. Thus the two commands predef(0)
  and clear remove all the variables.

  Normally, protected variables are standard libraries and variables with the
  percent prefix.

  Note the particular syntax clear a and not clear(a). Note also that a=[]
  does not kill a but sets a to an empty matrix.

SEE ALSO
  predef, who