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

« back to all changes in this revision

Viewing changes to man/linear/rcond.man

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

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