~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/graphics/square.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
square            Scilab Group            Scilab Function            square
2
 
NAME
3
 
   square - set scales for isometric plot (change the size of the window)
4
 
  
5
 
CALLING SEQUENCE
6
 
 square(xmin,ymin,xmax,ymax)
7
 
PARAMETERS
8
 
 xmin,xmax,ymin,ymax   : four real values
9
 
                       
10
 
DESCRIPTION
11
 
   square is used to have isometric scales on the x and y axes.  The
12
 
  requested values  xmin, xmax, ymin, ymax are the boundaries of the
13
 
  graphics frame and square changes the graphics window dimensions in order
14
 
  to have an isometric plot. square set the current graphics scales  and
15
 
  can be used in conjunction with graphics routines which request the
16
 
  current graphics scale (for instance fstrf="x0z" in plot2d).
17
 
  
18
 
EXAMPLE
19
 
 t=[0:0.1:2*%pi]';
20
 
 plot2d(sin(t),cos(t))
21
 
 xbasc()
22
 
 square(-1,-1,1,1)
23
 
 plot2d(sin(t),cos(t))
24
 
 xset("default")
25
 
SEE ALSO
26
 
   isoview, xsetech
27
 
  
28
 
AUTHOR
29
 
   Steer S.
30