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

« back to all changes in this revision

Viewing changes to man/linear/orth.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 orth 1 "April 1993" "Scilab Group" "Scilab Function"
 
2
.so ../sci.an
 
3
.SH NAME
 
4
orth - orthogonal basis
 
5
.SH CALLING SEQUENCE
 
6
.nf
 
7
Q=orth(A)
 
8
.fi
 
9
.SH PARAMETERS
 
10
.TP
 
11
A
 
12
: real or complex matrix
 
13
.TP
 
14
Q
 
15
: real or complex matrix
 
16
.SH DESCRIPTION
 
17
.Vb Q=orth(A)
 
18
returns \fVQ\fR, an orthogonal basis for the span of \fVA\fR.
 
19
Range(\fVQ\fR) = Range(\fVA\fR) and \fVQ'*Q=eye\fR.
 
20
.LP
 
21
The number of columns of \fVQ\fR is the rank of \fVA\fR as determined
 
22
by the QR algorithm.
 
23
.SH EXAMPLE
 
24
.nf
 
25
A=rand(5,3)*rand(3,4);
 
26
[X,dim]=rowcomp(A);X=X';
 
27
svd([orth(A),X(:,1:dim)])
 
28
.fi
 
29
.SH SEE ALSO
 
30
qr, rowcomp, colcomp, range
 
31
 
 
32
 
 
33