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

« back to all changes in this revision

Viewing changes to man/graphics/scaling.man

  • 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
.TH scaling 2 "April 1993" "Scilab Group" "Scilab Function" 
 
2
.so ../sci.an
 
3
.SH NAME
 
4
scaling - affine transformation of a set of points
 
5
.SH CALLING SEQUENCE
 
6
.nf
 
7
xy1=scaling(xy,factor,[orig])
 
8
.fi
 
9
.SH PARAMETERS 
 
10
.TP 8
 
11
xy1
 
12
: matrice of size (2,.).
 
13
.TP
 
14
xy
 
15
: matrice of size (2,.).
 
16
.TP
 
17
factor 
 
18
: real scalar, coefficient of the linear transformation.
 
19
.TP
 
20
orig 
 
21
: shift vector; default value is [0;0].
 
22
.SH DESCRIPTION
 
23
\fVscaling\fR performs an affine transformation on the set of points defined
 
24
by the coordinates \fVxy\fR:
 
25
 
 
26
\fVxy1(:,i) = factor * xy(:,i) + orig\fR.