~ubuntu-branches/ubuntu/karmic/scilab/karmic

« back to all changes in this revision

Viewing changes to man/programming/clear.man

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.TH clear 1 "April 1993" "Scilab Group" "Scilab Function"
 
2
.so ../sci.an
 
3
.SH NAME
 
4
clear - kills variables
 
5
.SH CALLING SEQUENCE
 
6
.nf
 
7
clear a
 
8
.fi
 
9
.SH DESCRIPTION
 
10
This command kills variables which are not protected.
 
11
It removes the named variables from the environment.
 
12
By itself \fVclear\fR kills all the variables except the variables
 
13
protected by \fVpredef\fR. Thus the two commands \fVpredef(0)\fR and \fVclear\fR
 
14
remove all the variables. 
 
15
.LP
 
16
Normally, protected variables are standard libraries and variables with
 
17
the percent prefix.
 
18
.LP
 
19
Note the particular syntax \fVclear a\fR and not \fVclear(a)\fR. Note also
 
20
that \fVa=[]\fR does not kill \fVa\fR but sets \fVa\fR to an empty matrix.
 
21
.SH SEE ALSO
 
22
predef, who
 
23