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

« back to all changes in this revision

Viewing changes to man/tksci/gcf.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
gcf             Fractales Group             Scilab Function             gcf
 
2
NAME
 
3
   gcf - gets the current active tksci figure
 
4
  
 
5
CALLING SEQUENCE
 
6
   h=gcf()
 
7
  
 
8
PARAMETERS
 
9
 o    h : handle of the current figure.
 
10
      
 
11
DESCRIPTION
 
12
   The current figure is the last created (and still existent) figure.
 
13
  
 
14
EXAMPLE
 
15
 figure(5);
 
16
 figure();
 
17
 figure();
 
18
 gcf()
 
19
 // returns 2
 
20
 close(gcf());
 
21
 // close figure 2
 
22
 gcf()
 
23
 // returns 1
 
24
 close(1);
 
25
 gcf()
 
26
 // returns 5
 
27
 close(5);
 
28
   
 
29
  
 
30
SEE ALSO
 
31
   figure, close
 
32
  
 
33
AUTHOR
 
34
   Bertrand Guiheneuf
 
35