annotate scripts/linear-algebra/normest.m @ 22827:c3d3a81ad986 stable

doc: Update documentation for norm, normest, normest1, condest. * data.cc (Fnorm): Add normest and normest1 to @seealso list. * condest.m: Delete extra space after colon. * normest.m: Rename output 'n' to 'nest' for norm estimate. Rename output 'c' to 'iter'. Add @seealso block. * normest1.m: Rewrite docstring.
author Rik <rik@octave.org>
date Thu, 24 Nov 2016 08:09:54 -0800
parents bac0d6f07a3e
children 41a751b19fd2 e9a0469dedd9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22323
bac0d6f07a3e maint: Update copyright notices for 2016.
John W. Eaton <jwe@octave.org>
parents: 21758
diff changeset
1 ## Copyright (C) 2006-2016 David Bateman and Marco Caliari
9871
87595d714005 move normest to linear-algebra, improve it
Jaroslav Hajek <highegg@gmail.com>
parents: 9051
diff changeset
2 ## Copyright (C) 2009 VZLU Prague
6212
cc34c0be7b00 [project @ 2006-12-08 11:17:12 by dbateman]
dbateman
parents:
diff changeset
3 ##
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6498
diff changeset
4 ## This file is part of Octave.
6212
cc34c0be7b00 [project @ 2006-12-08 11:17:12 by dbateman]
dbateman
parents:
diff changeset
5 ##
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6498
diff changeset
6 ## Octave is free software; you can redistribute it and/or modify it
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6498
diff changeset
7 ## under the terms of the GNU General Public License as published by
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6498
diff changeset
8 ## the Free Software Foundation; either version 3 of the License, or (at
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6498
diff changeset
9 ## your option) any later version.
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6498
diff changeset
10 ##
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6498
diff changeset
11 ## Octave is distributed in the hope that it will be useful, but
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6498
diff changeset
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6498
diff changeset
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6498
diff changeset
14 ## General Public License for more details.
6212
cc34c0be7b00 [project @ 2006-12-08 11:17:12 by dbateman]
dbateman
parents:
diff changeset
15 ##
cc34c0be7b00 [project @ 2006-12-08 11:17:12 by dbateman]
dbateman
parents:
diff changeset
16 ## You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6498
diff changeset
17 ## along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6498
diff changeset
18 ## <http://www.gnu.org/licenses/>.
6212
cc34c0be7b00 [project @ 2006-12-08 11:17:12 by dbateman]
dbateman
parents:
diff changeset
19
cc34c0be7b00 [project @ 2006-12-08 11:17:12 by dbateman]
dbateman
parents:
diff changeset
20 ## -*- texinfo -*-
22827
c3d3a81ad986 doc: Update documentation for norm, normest, normest1, condest.
Rik <rik@octave.org>
parents: 22323
diff changeset
21 ## @deftypefn {} {@var{nest} =} normest (@var{A})
c3d3a81ad986 doc: Update documentation for norm, normest, normest1, condest.
Rik <rik@octave.org>
parents: 22323
diff changeset
22 ## @deftypefnx {} {@var{nest} =} normest (@var{A}, @var{tol})
c3d3a81ad986 doc: Update documentation for norm, normest, normest1, condest.
Rik <rik@octave.org>
parents: 22323
diff changeset
23 ## @deftypefnx {} {[@var{nest}, @var{iter}] =} normest (@dots{})
20160
03b9d17a2d95 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19833
diff changeset
24 ## Estimate the 2-norm of the matrix @var{A} using a power series analysis.
03b9d17a2d95 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19833
diff changeset
25 ##
03b9d17a2d95 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19833
diff changeset
26 ## This is typically used for large matrices, where the cost of calculating
03b9d17a2d95 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19833
diff changeset
27 ## @code{norm (@var{A})} is prohibitive and an approximation to the 2-norm is
03b9d17a2d95 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19833
diff changeset
28 ## acceptable.
6212
cc34c0be7b00 [project @ 2006-12-08 11:17:12 by dbateman]
dbateman
parents:
diff changeset
29 ##
9051
1bf0ce0930be Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
30 ## @var{tol} is the tolerance to which the 2-norm is calculated. By default
20160
03b9d17a2d95 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19833
diff changeset
31 ## @var{tol} is 1e-6.
03b9d17a2d95 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19833
diff changeset
32 ##
22827
c3d3a81ad986 doc: Update documentation for norm, normest, normest1, condest.
Rik <rik@octave.org>
parents: 22323
diff changeset
33 ## The optional output @var{iter} returns the number of iterations that were
c3d3a81ad986 doc: Update documentation for norm, normest, normest1, condest.
Rik <rik@octave.org>
parents: 22323
diff changeset
34 ## required for @code{normest} to converge.
c3d3a81ad986 doc: Update documentation for norm, normest, normest1, condest.
Rik <rik@octave.org>
parents: 22323
diff changeset
35 ## @seealso{normest1, norm, cond, condest}
6212
cc34c0be7b00 [project @ 2006-12-08 11:17:12 by dbateman]
dbateman
parents:
diff changeset
36 ## @end deftypefn
cc34c0be7b00 [project @ 2006-12-08 11:17:12 by dbateman]
dbateman
parents:
diff changeset
37
10788
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
38 function [n, c] = normest (A, tol = 1e-6)
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
39
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
40 if (nargin != 1 && nargin != 2)
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
41 print_usage ();
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
42 endif
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
43
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
44 if (! (isnumeric (A) && ndims (A) == 2))
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
45 error ("normest: A must be a numeric 2-D matrix");
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
46 endif
10788
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
47
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
48 if (! (isscalar (tol) && isreal (tol)))
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
49 error ("normest: TOL must be a real scalar");
11587
c792872f8942 all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
50 endif
10788
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
51
9871
87595d714005 move normest to linear-algebra, improve it
Jaroslav Hajek <highegg@gmail.com>
parents: 9051
diff changeset
52 if (! isfloat (A))
87595d714005 move normest to linear-algebra, improve it
Jaroslav Hajek <highegg@gmail.com>
parents: 9051
diff changeset
53 A = double (A);
87595d714005 move normest to linear-algebra, improve it
Jaroslav Hajek <highegg@gmail.com>
parents: 9051
diff changeset
54 endif
10788
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
55
9871
87595d714005 move normest to linear-algebra, improve it
Jaroslav Hajek <highegg@gmail.com>
parents: 9051
diff changeset
56 tol = max (tol, eps (class (A)));
10788
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
57 ## Set random number generator to depend on target matrix
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
58 v = rand ("state");
20179
cc5ffacb15ab normest.m: Fix function to run with sparse complex inputs (bug #45080).
Rik <rik@octave.org>
parents: 20160
diff changeset
59 rand ("state", full (trace (A)));
10788
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
60 ncols = columns (A);
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
61 ## Randomize y to avoid bad guesses for important matrices.
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
62 y = rand (ncols, 1);
6212
cc34c0be7b00 [project @ 2006-12-08 11:17:12 by dbateman]
dbateman
parents:
diff changeset
63 c = 0;
10788
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
64 n = 0;
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
65 do
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
66 n0 = n;
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
67 x = A * y;
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
68 normx = norm (x);
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
69 if (normx == 0)
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
70 x = rand (ncols, 1);
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
71 else
20231
83792dd9bcc1 Use in-place operators in m-files where possible.
Rik <rik@octave.org>
parents: 20179
diff changeset
72 x /= normx;
11113
a8ac114ec9ab Stylefixes, replace end by endif.
Thorsten Meyer <thorsten.meyier@gmx.de>
parents: 10788
diff changeset
73 endif
10788
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
74 y = A' * x;
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
75 n = norm (y);
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
76 c += 1;
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
77 until (abs (n - n0) <= tol * n)
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
78
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
79 rand ("state", v); # restore state of random number generator
21758
ffad2baa90f7 maint: Use newlines to make code more readable.
Rik <rik@octave.org>
parents: 20852
diff changeset
80
6212
cc34c0be7b00 [project @ 2006-12-08 11:17:12 by dbateman]
dbateman
parents:
diff changeset
81 endfunction
10788
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
82
14363
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14138
diff changeset
83
10788
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
84 %!test
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
85 %! A = toeplitz ([-2,1,0,0]);
14363
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14138
diff changeset
86 %! assert (normest (A), norm (A), 1e-6);
10788
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
87
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
88 %!test
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
89 %! A = rand (10);
14363
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14138
diff changeset
90 %! assert (normest (A), norm (A), 1e-6);
10788
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
91
19833
9fc020886ae9 maint: Clean up m-files to follow Octave coding conventions.
Rik <rik@octave.org>
parents: 19697
diff changeset
92 ## Test input validation
10788
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
93 %!error normest ()
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
94 %!error normest (1, 2, 3)
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
95 %!error normest ([true true])
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
96 %!error normest (ones (3,3,3))
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
97 %!error normest (1, [1, 2])
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
98 %!error normest (1, 1+1i)
c69252eb2f2b normest.m: Set the "state" of the random number generator to depend on trace(A).
Rik <octave@nomad.inbox5.com>
parents: 9875
diff changeset
99