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

« back to all changes in this revision

Viewing changes to man/graphics/locate.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
locate            Scilab Group            Scilab Function            locate
 
2
NAME
 
3
   locate - mouse selection of a set of points 
 
4
  
 
5
CALLING SEQUENCE
 
6
 x=locate([n,flag])
 
7
PARAMETERS
 
8
 x        : matrix of size (2,n1). n1=n if the parameter n is given.
 
9
          
 
10
 n,flag   : integer values.
 
11
          
 
12
DESCRIPTION
 
13
   locate is used to get the coordinates of one or more  points selected
 
14
  with the mouse in a graphics window. The coordinates  are given using the
 
15
  current graphics scale.   If n>0, n points are selected and their
 
16
  coordinates are returned in  the matrix x.  If n<=0, points are selected
 
17
  until the user clicks with the left button  of the mouse which stands for
 
18
  stop. The last point (clicked with the left  button) is not returned. 
 
19
  x=locate() is the same as x=locate(-1).
 
20
  
 
21
   If flag=1 a cross is drawn at the points where the mouse is clicked.
 
22
  
 
23
SEE ALSO
 
24
   xclick, xgetmouse
 
25
  
 
26
AUTHOR
 
27
   S.S. & J.Ph.C
 
28