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

« back to all changes in this revision

Viewing changes to man/elementary/isdef.cat

  • 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
isdef            Scilab Group            Scilab Function              isdef
 
2
NAME
 
3
   isdef - check variable  existence
 
4
  
 
5
CALLING SEQUENCE
 
6
 isdef(name [,where])
 
7
PARAMETERS
 
8
 name : a character string
 
9
      
 
10
 where
 
11
       : an optional character string with default value 'all'
 
12
      
 
13
DESCRIPTION
 
14
   isdef(name) returns %T if the variable 'var-name' exists  and %F
 
15
  otherwise.  isdef(name,'local') returns %T if the variable 'var-name'
 
16
  exists  in the   local environment of the current function and %F
 
17
  otherwise.  
 
18
  
 
19
EXAMPLE
 
20
 A=1;
 
21
 isdef('A')
 
22
 clear A
 
23
 isdef('A')
 
24
SEE ALSO
 
25
   exists, whereis, type, typeof, clear
 
26