Mercurial > hg > octave-lyh
annotate scripts/linear-algebra/cond.m @ 17521:c3a3532e3d98
linsolve.m: Add new function for Matlab compatibility.
* scripts/linear-algebra/linsolve.m: New function.
* scripts/linear-algebra/module.mk: Add linsolve.m to build system.
* NEWS: Announce new function.
author | Nir Krakauer < nkrakauer@ccny.cuny.edu> |
---|---|
date | Thu, 26 Sep 2013 08:30:26 -0700 |
parents | c3bd7314643c |
children |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
12642
diff
changeset
|
1 ## Copyright (C) 1993-2012 John W. Eaton |
2313 | 2 ## |
3 ## This file is part of Octave. | |
4 ## | |
5 ## Octave is free software; you can redistribute it and/or modify it | |
6 ## under the terms of the GNU General Public License as published by | |
7016 | 7 ## the Free Software Foundation; either version 3 of the License, or (at |
8 ## your option) any later version. | |
2313 | 9 ## |
10 ## Octave is distributed in the hope that it will be useful, but | |
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 ## General Public License for more details. | |
14 ## | |
15 ## You should have received a copy of the GNU General Public License | |
7016 | 16 ## along with Octave; see the file COPYING. If not, see |
17 ## <http://www.gnu.org/licenses/>. | |
245 | 18 |
3372 | 19 ## -*- texinfo -*- |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
10793
diff
changeset
|
20 ## @deftypefn {Function File} {} cond (@var{A}) |
11563
3c6e8aaa9555
Grammarcheck m-files before 3.4 release.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
21 ## @deftypefnx {Function File} {} cond (@var{A}, @var{p}) |
12584
7ef7e20057fa
Improve documentation strings in Linear Algebra chapter.
Rik <octave@nomad.inbox5.com>
parents:
11587
diff
changeset
|
22 ## Compute the @var{p}-norm condition number of a matrix. |
12642
f96b9b9f141b
doc: Periodic grammarcheck and spellcheck of documentation.
Rik <octave@nomad.inbox5.com>
parents:
12584
diff
changeset
|
23 ## |
16957
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
24 ## @code{cond (@var{A})} is defined as |
10602
38eae0c3a003
Add TeX equation to cond.m documentation
Rik <octave@nomad.inbox5.com>
parents:
9307
diff
changeset
|
25 ## @tex |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
10793
diff
changeset
|
26 ## $ {\parallel A \parallel_p * \parallel A^{-1} \parallel_p .} $ |
10602
38eae0c3a003
Add TeX equation to cond.m documentation
Rik <octave@nomad.inbox5.com>
parents:
9307
diff
changeset
|
27 ## @end tex |
38eae0c3a003
Add TeX equation to cond.m documentation
Rik <octave@nomad.inbox5.com>
parents:
9307
diff
changeset
|
28 ## @ifnottex |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
10793
diff
changeset
|
29 ## @code{norm (@var{A}, @var{p}) * norm (inv (@var{A}), @var{p})}. |
10602
38eae0c3a003
Add TeX equation to cond.m documentation
Rik <octave@nomad.inbox5.com>
parents:
9307
diff
changeset
|
30 ## @end ifnottex |
38eae0c3a003
Add TeX equation to cond.m documentation
Rik <octave@nomad.inbox5.com>
parents:
9307
diff
changeset
|
31 ## |
16957
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
32 ## By default, @code{@var{p} = 2} is used which implies a (relatively slow) |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11563
diff
changeset
|
33 ## singular value decomposition. Other possible selections are |
10687
a8ce6bdecce5
Improve documentation strings.
Rik <octave@nomad.inbox5.com>
parents:
10602
diff
changeset
|
34 ## @code{@var{p} = 1, Inf, "fro"} which are generally faster. See |
10602
38eae0c3a003
Add TeX equation to cond.m documentation
Rik <octave@nomad.inbox5.com>
parents:
9307
diff
changeset
|
35 ## @code{norm} for a full discussion of possible @var{p} values. |
16957
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
36 ## |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
37 ## The condition number of a matrix quantifies the sensitivity of the matrix |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
38 ## inversion operation when small changes are made to matrix elements. Ideally |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
39 ## the condition number will be close to 1. When the number is large this |
17179
c3bd7314643c
doc: Periodic spellcheck of documentation.
Rik <rik@octave.org>
parents:
16969
diff
changeset
|
40 ## indicates small changes (such as underflow or round-off error) will produce |
16957
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
41 ## large changes in the resulting output. In such cases the solution results |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
42 ## from numerical computing are not likely to be accurate. |
9307
c2923c27c877
Various documentation improvements
Rik <rdrider0-list@yahoo.com>
parents:
9051
diff
changeset
|
43 ## @seealso{condest, rcond, norm, svd} |
3372 | 44 ## @end deftypefn |
4 | 45 |
2314 | 46 ## Author: jwe |
47 | |
16957
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
48 function retval = cond (A, p = 2) |
4 | 49 |
16957
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
50 if (nargin < 1 || nargin > 2) |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
51 print_usage (); |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
52 endif |
7484 | 53 |
16957
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
54 if (ndims (A) > 2) |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
55 error ("cond: A must be a 2-D matrix"); |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
56 endif |
4890 | 57 |
16957
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
58 if (p == 2) |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
59 if (isempty (A)) |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
60 retval = 0.0; |
16969
58188d5a2587
Use isfinite() to replace isinf() | isnan() combination for 30% speed-up.
Rik <rik@octave.org>
parents:
16957
diff
changeset
|
61 elseif (any (! isfinite (A(:)))) |
16957
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
62 error ("cond: A must not contain Inf or NaN values"); |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
63 else |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
64 sigma = svd (A); |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
65 sigma_1 = sigma(1); |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
66 sigma_n = sigma(end); |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
67 if (sigma_1 == 0 || sigma_n == 0) |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
68 retval = Inf; |
7484 | 69 else |
16957
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
70 retval = sigma_1 / sigma_n; |
7484 | 71 endif |
3250 | 72 endif |
4 | 73 else |
16957
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
74 retval = norm (A, p) * norm (inv (A), p); |
4 | 75 endif |
76 | |
77 endfunction | |
7411 | 78 |
14363
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
79 |
7484 | 80 %!test |
14363
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
81 %! y = [7, 2, 3; 1, 3, 4; 6, 4, 5]; |
7484 | 82 %! tol = 1e-6; |
14363
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
83 %! type = {1, 2, "fro", "inf", inf}; |
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
84 %! for n = 1:numel (type) |
7484 | 85 %! rcondition(n) = 1 / cond (y, type{n}); |
86 %! endfor | |
87 %! assert (rcondition, [0.017460, 0.019597, 0.018714, 0.012022, 0.012022], tol); | |
7411 | 88 |
14363
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
89 %!assert (cond ([1, 2; 2, 1]), 3, sqrt (eps)) |
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
90 %!assert (cond ([1, 2, 3; 4, 5, 6; 7, 8, 9]) > 1.0e+16) |
7411 | 91 |
14363
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
92 %!error cond () |
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
93 %!error cond (1, 2, 3) |
16957
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
94 %!error <A must be a 2-D matrix> cond (ones (1,3,3)) |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
95 %!error <A must not contain Inf or NaN value> cond ([1, 2;Inf 4]) |
9f50dd7ece60
cond.m: Update documentation and coding style.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
96 %!error <A must not contain Inf or NaN value> cond ([1, 2;NaN 4]) |
7411 | 97 |