File: xchange.cat

package info (click to toggle)
scilab 2.6-4
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 54,632 kB
  • ctags: 40,267
  • sloc: ansic: 267,851; fortran: 166,549; sh: 10,005; makefile: 4,119; tcl: 1,070; cpp: 233; csh: 143; asm: 135; perl: 130; java: 39
file content (31 lines) | stat: -rw-r--r-- 1,025 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
xchange           Scilab Group           Scilab Function            xchange
NAME
   xchange - transform real to pixel coordinates
  
CALLING SEQUENCE
 [x1,y1,rect]=xchange(x,y,dir)
PARAMETERS
 x,y     : two matrices of size (n1,n2) (coordinates of a set of points).
         
 x1,y1   : two matrices of size (n1,n2) (coordinates of the set of
         points).
         
 rect    : a vector of size 4.
         
DESCRIPTION
   After having used a graphics function, xchange computes pixel coordinates
  from real coordinates and conversely,  according to the value of the
  parameter dir: "f2i" (float to int) means real to pixel and "i2f" (int to
  float) means pixel to real. x1 and y1 are the new coordinates of the set
  of points  defined by the old coordinates x and y.  rect is the
  coordinates in pixel of the rectangle in which the plot was done:
  [upper-left point, width, height].
  
EXAMPLE
 t=[0:0.1:2*%pi]';
 plot2d(t,sin(t))
 [x,y,rect]=xchange(1,1,"f2i")
 [x,y,rect]=xchange(0,0,"i2f")
AUTHOR
   J.Ph.C.