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

« back to all changes in this revision

Viewing changes to man/linear/rcond.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 rcond 1 "April 1993" "Scilab Group" "Scilab Function"
 
2
.so ../sci.an
 
3
.SH NAME
 
4
rcond -  inverse condition number
 
5
.SH CALLING SEQUENCE
 
6
.nf
 
7
rcond(X) 
 
8
.fi
 
9
.SH PARAMETERS
 
10
.TP
 
11
X
 
12
: real or complex square matrix
 
13
.SH DESCRIPTION
 
14
.Vb rcond(X)
 
15
is an estimate for the reciprocal of the
 
16
condition of \fVX\fR in the 1-norm.
 
17
.LP
 
18
If \fVX\fR is well conditioned, \fVrcond(X)\fR is close to 1.
 
19
If not, \fVrcond(X)\fR is close to 0.
 
20
.LP
 
21
.Vb [r,z]=rcond(X)  
 
22
sets \fVr\fR to \fVrcond(X)\fR and returns \fVz\fR such that
 
23
.LP
 
24
.Vb norm(X*z,1) = r*norm(X,1)*norm(z,1) 
 
25
Thus, if \fVrcond\fR is small \fVz\fR is a vector in the kernel.
 
26
.SH EXAMPLE
 
27
.nf
 
28
A=diag([1:10]);
 
29
rcond(A)
 
30
A(1,1)=0.000001;
 
31
rcond(A)
 
32
.fi
 
33
.SH SEE ALSO
 
34
svd, cond, inv
 
35
 
 
36
 
 
37
 
 
38
 
 
39