Mercurial > hg > octave-nkf
annotate scripts/sparse/svds.m @ 16048:10142aad4b9f classdef
Implement indirect method call: fun(obj, ...).
* libinterp/octave-value/ov-classdef.h (class cdef_manager): New class.
(cdef_method::cdef_method_rep::meta_subsref,
cdef_method::cdef_method_rep::meta_is_postfix_index_handled): New
methods.
* libinterp/octave-value/ov-classdef.cc (all_packages, all_classes):
Move static variables to class cdef_manager.
(lookup_class (std::string, bool, bool)): Move implementation to
method cdef_manager::do_find_class().
(lookup_package): Move implementation to method
cdef_manager::do_find_package().
(make_class): Use cdef_manager::register_class.
(make_package): Use cdef_manager::register_package and
cdef_manager::find_package.
(cdef_class::cdef_class_rep::meta_release): Use
cdef_manager::unregister_class.
(cdef_method::cdef_method_rep::meta_subsref): New method.
(class cdef_manager): New class.
* libinterp/interpfcn/symtab.cc
(symbol_table::fcn_info::fcn_info_rep::load_class_constructor):
Look for classdef constructor in normal m-files. Call
find_user_function() and check whether the result is a classdef
constructor. If it is, stash it as a constructor and restore the
previous value of function_on_path.
(symbol_table::fcn_info::fcn_info_rep::load_class_method): Look for
method in classdef system, using cdef_manager::find_method_symbol().
author | Michael Goffioul <michael.goffioul@gmail.com> |
---|---|
date | Mon, 11 Feb 2013 15:20:00 -0500 |
parents | 94d21131fefd |
children | 610e02bf9579 |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
14041
diff
changeset
|
1 ## Copyright (C) 2006-2012 David Bateman |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
2 ## |
11104 | 3 ## This file is part of Octave. |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
4 ## |
11104 | 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 | |
7 ## the Free Software Foundation; either version 3 of the License, or (at | |
8 ## your option) any later version. | |
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. | |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
14 ## |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
15 ## You should have received a copy of the GNU General Public License |
11104 | 16 ## along with Octave; see the file COPYING. If not, see |
17 ## <http://www.gnu.org/licenses/>. | |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
18 |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
19 ## -*- texinfo -*- |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
20 ## @deftypefn {Function File} {@var{s} =} svds (@var{A}) |
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
21 ## @deftypefnx {Function File} {@var{s} =} svds (@var{A}, @var{k}) |
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
22 ## @deftypefnx {Function File} {@var{s} =} svds (@var{A}, @var{k}, @var{sigma}) |
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
23 ## @deftypefnx {Function File} {@var{s} =} svds (@var{A}, @var{k}, @var{sigma}, @var{opts}) |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
24 ## @deftypefnx {Function File} {[@var{u}, @var{s}, @var{v}] =} svds (@dots{}) |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
25 ## @deftypefnx {Function File} {[@var{u}, @var{s}, @var{v}, @var{flag}] =} svds (@dots{}) |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
26 ## |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
27 ## Find a few singular values of the matrix @var{A}. The singular values |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
28 ## are calculated using |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
29 ## |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
30 ## @example |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
31 ## @group |
14327
4d917a6a858b
doc: Use Octave coding conventions in @example blocks of docstrings.
Rik <octave@nomad.inbox5.com>
parents:
14182
diff
changeset
|
32 ## [@var{m}, @var{n}] = size (@var{A}); |
4d917a6a858b
doc: Use Octave coding conventions in @example blocks of docstrings.
Rik <octave@nomad.inbox5.com>
parents:
14182
diff
changeset
|
33 ## @var{s} = eigs ([sparse(@var{m}, @var{m}), @var{A}; |
4d917a6a858b
doc: Use Octave coding conventions in @example blocks of docstrings.
Rik <octave@nomad.inbox5.com>
parents:
14182
diff
changeset
|
34 ## @var{A}', sparse(@var{n}, @var{n})]) |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
35 ## @end group |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
36 ## @end example |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
37 ## |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
38 ## The eigenvalues returned by @code{eigs} correspond to the singular values |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
39 ## of @var{A}. The number of singular values to calculate is given by @var{k} |
10663
b90328525985
svds.m: Validate struct input argument.
Rik <octave@nomad.inbox5.com>
parents:
10660
diff
changeset
|
40 ## and defaults to 6. |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
41 ## |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
42 ## The argument @var{sigma} specifies which singular values to find. When |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
43 ## @var{sigma} is the string 'L', the default, the largest singular values of |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
44 ## @var{A} are found. Otherwise, @var{sigma} must be a real scalar and the |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
45 ## singular values closest to @var{sigma} are found. As a corollary, |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
46 ## @code{@var{sigma} = 0} finds the smallest singular values. Note that for |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
47 ## relatively small values of @var{sigma}, there is a chance that the requested |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
48 ## number of singular values will not be found. In that case @var{sigma} |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
49 ## should be increased. |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
50 ## |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
51 ## @var{opts} is a structure defining options that @code{svds} will pass |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
52 ## to @code{eigs}. The possible fields of this structure are documented in |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
53 ## @code{eigs}. By default, @code{svds} sets the following three fields: |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
54 ## |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
55 ## @table @code |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
56 ## @item tol |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
57 ## The required convergence tolerance for the singular values. The default |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
58 ## value is 1e-10. @code{eigs} is passed @code{@var{tol} / sqrt(2)}. |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
59 ## |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
60 ## @item maxit |
9066
be150a172010
Cleanup documentation for diagperm.texi, sparse.texi
Rik <rdrider0-list@yahoo.com>
parents:
9051
diff
changeset
|
61 ## The maximum number of iterations. The default is 300. |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
62 ## |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
63 ## @item disp |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
64 ## The level of diagnostic printout (0|1|2). If @code{disp} is 0 then |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
65 ## diagnostics are disabled. The default value is 0. |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
66 ## @end table |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
67 ## |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
68 ## If more than one output is requested then @code{svds} will return an |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
69 ## approximation of the singular value decomposition of @var{A} |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
70 ## |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
71 ## @example |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
72 ## @var{A}_approx = @var{u}*@var{s}*@var{v}' |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
73 ## @end example |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
74 ## |
10846
a4f482e66b65
Grammarcheck more of the documentation.
Rik <octave@nomad.inbox5.com>
parents:
10671
diff
changeset
|
75 ## @noindent |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
76 ## where @var{A}_approx is a matrix of size @var{A} but only rank @var{k}. |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
77 ## |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
78 ## @var{flag} returns 0 if the algorithm has succesfully converged, and 1 |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
79 ## otherwise. The test for convergence is |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
80 ## |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
81 ## @example |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
82 ## @group |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
83 ## norm (@var{A}*@var{v} - @var{u}*@var{s}, 1) <= @var{tol} * norm (@var{A}, 1) |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
84 ## @end group |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
85 ## @end example |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
86 ## |
10846
a4f482e66b65
Grammarcheck more of the documentation.
Rik <octave@nomad.inbox5.com>
parents:
10671
diff
changeset
|
87 ## @code{svds} is best for finding only a few singular values from a large |
14868
5d3a684236b0
maint: Use Octave coding conventions for cuddling parentheses in scripts directory
Rik <octave@nomad.inbox5.com>
parents:
14363
diff
changeset
|
88 ## sparse matrix. Otherwise, @code{svd (full (@var{A}))} will likely be more |
10846
a4f482e66b65
Grammarcheck more of the documentation.
Rik <octave@nomad.inbox5.com>
parents:
10671
diff
changeset
|
89 ## efficient. |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
90 ## @end deftypefn |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
91 ## @seealso{svd, eigs} |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
92 |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
93 function [u, s, v, flag] = svds (A, k, sigma, opts) |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
94 |
8507 | 95 persistent root2 = sqrt (2); |
96 | |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
97 if (nargin < 1 || nargin > 4) |
8507 | 98 print_usage (); |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
99 endif |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
100 |
14868
5d3a684236b0
maint: Use Octave coding conventions for cuddling parentheses in scripts directory
Rik <octave@nomad.inbox5.com>
parents:
14363
diff
changeset
|
101 if (ndims (A) > 2) |
11589
b0084095098e
missing semicolons in script files
John W. Eaton <jwe@octave.org>
parents:
11587
diff
changeset
|
102 error ("svds: A must be a 2D matrix"); |
10663
b90328525985
svds.m: Validate struct input argument.
Rik <octave@nomad.inbox5.com>
parents:
10660
diff
changeset
|
103 endif |
b90328525985
svds.m: Validate struct input argument.
Rik <octave@nomad.inbox5.com>
parents:
10660
diff
changeset
|
104 |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
105 if (nargin < 4) |
8507 | 106 opts.tol = 1e-10 / root2; |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
107 opts.disp = 0; |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
108 opts.maxit = 300; |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
109 else |
8507 | 110 if (!isstruct (opts)) |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
111 error ("svds: OPTS must be a structure"); |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
112 endif |
8507 | 113 if (!isfield (opts, "tol")) |
114 opts.tol = 1e-10 / root2; | |
10663
b90328525985
svds.m: Validate struct input argument.
Rik <octave@nomad.inbox5.com>
parents:
10660
diff
changeset
|
115 else |
b90328525985
svds.m: Validate struct input argument.
Rik <octave@nomad.inbox5.com>
parents:
10660
diff
changeset
|
116 opts.tol = opts.tol / root2; |
b90328525985
svds.m: Validate struct input argument.
Rik <octave@nomad.inbox5.com>
parents:
10660
diff
changeset
|
117 endif |
b90328525985
svds.m: Validate struct input argument.
Rik <octave@nomad.inbox5.com>
parents:
10660
diff
changeset
|
118 if (isfield (opts, "v0")) |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
119 if (!isvector (opts.v0) || (length (opts.v0) != sum (size (A)))) |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
120 error ("svds: OPTS.v0 must be a vector with rows(A)+columns(A) entries"); |
10663
b90328525985
svds.m: Validate struct input argument.
Rik <octave@nomad.inbox5.com>
parents:
10660
diff
changeset
|
121 endif |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
122 endif |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
123 endif |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
124 |
8507 | 125 if (nargin < 3 || strcmp (sigma, "L")) |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
126 if (isreal (A)) |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
127 sigma = "LA"; |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
128 else |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
129 sigma = "LR"; |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
130 endif |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
131 elseif (isscalar (sigma) && isnumeric (sigma) && isreal (sigma)) |
8507 | 132 if (sigma < 0) |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
133 error ("svds: SIGMA must be a positive real value"); |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
134 endif |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
135 else |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
136 error ("svds: SIGMA must be a positive real value or the string 'L'"); |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
137 endif |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
138 |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
139 [m, n] = size (A); |
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
140 max_a = max (abs (A(:))); |
8507 | 141 if (max_a == 0) |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
142 s = zeros (k, 1); # special case of zero matrix |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
143 else |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
144 if (nargin < 2) |
8507 | 145 k = min ([6, m, n]); |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
146 else |
8507 | 147 k = min ([k, m, n]); |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
148 endif |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
149 |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
150 ## Scale everything by the 1-norm to make things more stable. |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
151 b = A / max_a; |
8507 | 152 b_opts = opts; |
12649
8579e7a6e6e0
Improve performance (2X) of svds by avoiding issymmetric calculation (bug #33073)
Rik <octave@nomad.inbox5.com>
parents:
12517
diff
changeset
|
153 ## Call to eigs is always a symmetric matrix by construction |
8579e7a6e6e0
Improve performance (2X) of svds by avoiding issymmetric calculation (bug #33073)
Rik <octave@nomad.inbox5.com>
parents:
12517
diff
changeset
|
154 b_opts.issym = true; |
8507 | 155 b_opts.tol = opts.tol / max_a; |
156 b_sigma = sigma; | |
157 if (!ischar (b_sigma)) | |
158 b_sigma = b_sigma / max_a; | |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
159 endif |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
160 |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
161 if (b_sigma == 0) |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
162 ## Find the smallest eigenvalues |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
163 ## The eigenvalues returns by eigs for sigma=0 are symmetric about 0. |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
164 ## As we are only interested in the positive eigenvalues, we have to |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
165 ## double k and then throw out the k negative eigenvalues. |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
166 ## Separately, if sigma is non-zero, but smaller than the smallest |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
167 ## singular value, ARPACK may not return k eigenvalues. However, as |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
168 ## computation scales with k we'd like to avoid doubling k for all |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
169 ## scalar values of sigma. |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
170 b_k = 2 * k; |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
171 else |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
172 b_k = k; # Normal case, find just the k largest eigenvalues |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
173 endif |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
174 |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
175 if (nargout > 1) |
8507 | 176 [V, s, flag] = eigs ([sparse(m,m), b; b', sparse(n,n)], |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
177 b_k, b_sigma, b_opts); |
12517
c2e8c9d9e284
Fix bug #32818, nonconformant arguments in svds.
Rik <octave@nomad.inbox5.com>
parents:
12329
diff
changeset
|
178 s = diag (s); |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
179 else |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
180 s = eigs ([sparse(m,m), b; b', sparse(n,n)], b_k, b_sigma, b_opts); |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
181 endif |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
182 |
8507 | 183 if (ischar (sigma)) |
184 norma = max (s); | |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
185 else |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
186 norma = normest (A); |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
187 endif |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
188 ## We wish to exclude all eigenvalues that are less than zero as these |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
189 ## are artifacts of the way the matrix passed to eigs is formed. There |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
190 ## is also the possibility that the value of sigma chosen is exactly |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
191 ## a singular value, and in that case we're dead!! So have to rely on |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
192 ## the warning from eigs. We exclude the singular values which are |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
193 ## less than or equal to zero to within some tolerance scaled by the |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
194 ## norm since if we don't we might end up with too many singular |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
195 ## values. |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
196 tol = norma * opts.tol; |
14868
5d3a684236b0
maint: Use Octave coding conventions for cuddling parentheses in scripts directory
Rik <octave@nomad.inbox5.com>
parents:
14363
diff
changeset
|
197 ind = find (s > tol); |
8507 | 198 if (length (ind) < k) |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
199 ## Too few eigenvalues returned. Add in any zero eigenvalues of B, |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
200 ## including the nominally negative ones. |
8507 | 201 zind = find (abs (s) <= tol); |
202 p = min (length (zind), k - length (ind)); | |
203 ind = [ind; zind(1:p)]; | |
204 elseif (length (ind) > k) | |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
205 ## Too many eigenvalues returned. Select according to criterium. |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
206 if (b_sigma == 0) |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
207 ind = ind(end+1-k:end); # smallest eigenvalues |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
208 else |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
209 ind = ind(1:k); # largest eigenvalues |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
210 endif |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
211 endif |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
212 s = s(ind); |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
213 |
8507 | 214 if (length (s) < k) |
215 warning ("returning fewer singular values than requested"); | |
216 if (!ischar (sigma)) | |
10549 | 217 warning ("try increasing the value of sigma"); |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
218 endif |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
219 endif |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
220 |
8507 | 221 s = s * max_a; |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
222 endif |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
223 |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
224 if (nargout < 2) |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
225 u = s; |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
226 else |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
227 if (max_a == 0) |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
228 u = eye (m, k); |
12517
c2e8c9d9e284
Fix bug #32818, nonconformant arguments in svds.
Rik <octave@nomad.inbox5.com>
parents:
12329
diff
changeset
|
229 s = diag (s); |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
230 v = eye (n, k); |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
231 else |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
232 u = root2 * V(1:m,ind); |
12517
c2e8c9d9e284
Fix bug #32818, nonconformant arguments in svds.
Rik <octave@nomad.inbox5.com>
parents:
12329
diff
changeset
|
233 s = diag (s); |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
234 v = root2 * V(m+1:end,ind); |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
235 endif |
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
236 |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
237 if (nargout > 3) |
11471
994e2a93a8e2
Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents:
11104
diff
changeset
|
238 flag = norm (A*v - u*s, 1) > root2 * opts.tol * norm (A, 1); |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
239 endif |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
240 endif |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
241 |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
242 endfunction |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
243 |
14363
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14327
diff
changeset
|
244 |
14041
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
245 %!shared n, k, A, u, s, v, opts, rand_state, randn_state |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
246 %! n = 100; |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
247 %! k = 7; |
14041
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
248 %! A = sparse ([3:n,1:n,1:(n-2)],[1:(n-2),1:n,3:n],[ones(1,n-2),0.4*n*ones(1,n),ones(1,n-2)]); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
249 %! [u,s,v] = svd (full (A)); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
250 %! s = diag (s); |
14868
5d3a684236b0
maint: Use Octave coding conventions for cuddling parentheses in scripts directory
Rik <octave@nomad.inbox5.com>
parents:
14363
diff
changeset
|
251 %! [~, idx] = sort (abs (s)); |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff
changeset
|
252 %! s = s(idx); |
14041
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
253 %! u = u(:, idx); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
254 %! v = v(:, idx); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
255 %! randn_state = randn ("state"); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
256 %! rand_state = rand ("state"); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
257 %! randn ("state", 42); % Initialize to make normest function reproducible |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
258 %! rand ("state", 42); |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
259 %! opts.v0 = rand (2*n,1); % Initialize eigs ARPACK starting vector |
10671
f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Rik <octave@nomad.inbox5.com>
parents:
10663
diff
changeset
|
260 %! % to guarantee reproducible results |
14041
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
261 %! |
14144
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
262 %!testif HAVE_ARPACK |
14041
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
263 %! [u2,s2,v2,flag] = svds (A,k); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
264 %! s2 = diag (s2); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
265 %! assert (flag, !1); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
266 %! assert (s2, s(end:-1:end-k+1), 1e-10); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
267 %! |
14182
f8d99761244c
test: Expand %!testif functionality to multiple conditions
Rik <octave@nomad.inbox5.com>
parents:
14144
diff
changeset
|
268 %!testif HAVE_ARPACK, HAVE_UMFPACK |
14041
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
269 %! [u2,s2,v2,flag] = svds (A,k,0,opts); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
270 %! s2 = diag (s2); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
271 %! assert (flag, !1); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
272 %! assert (s2, s(k:-1:1), 1e-10); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
273 %! |
14182
f8d99761244c
test: Expand %!testif functionality to multiple conditions
Rik <octave@nomad.inbox5.com>
parents:
14144
diff
changeset
|
274 %!testif HAVE_ARPACK, HAVE_UMFPACK |
14868
5d3a684236b0
maint: Use Octave coding conventions for cuddling parentheses in scripts directory
Rik <octave@nomad.inbox5.com>
parents:
14363
diff
changeset
|
275 %! idx = floor (n/2); |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
276 %! % Don't put sigma right on a singular value or there are convergence issues |
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
277 %! sigma = 0.99*s(idx) + 0.01*s(idx+1); |
14041
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
278 %! [u2,s2,v2,flag] = svds (A,k,sigma,opts); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
279 %! s2 = diag (s2); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
280 %! assert (flag, !1); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
281 %! assert (s2, s((idx+floor(k/2)):-1:(idx-floor(k/2))), 1e-10); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
282 %! |
14144
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
283 %!testif HAVE_ARPACK |
14041
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
284 %! [u2,s2,v2,flag] = svds (zeros (10), k); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
285 %! assert (u2, eye (10, k)); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
286 %! assert (s2, zeros (k)); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
287 %! assert (v2, eye (10, 7)); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
288 %! |
14144
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
289 %!testif HAVE_ARPACK |
12517
c2e8c9d9e284
Fix bug #32818, nonconformant arguments in svds.
Rik <octave@nomad.inbox5.com>
parents:
12329
diff
changeset
|
290 %! s = svds (speye (10)); |
15535
fe159d11b864
increase tolerance for svds test
John W. Eaton <jwe@octave.org>
parents:
14327
diff
changeset
|
291 %! assert (s, ones (6, 1), 4*eps); |
13747
e8564e8b0043
Restore random number state after %!demos or %!tests
Rik <octave@nomad.inbox5.com>
parents:
12939
diff
changeset
|
292 |
14041
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
293 %!test |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
294 %! ## Restore random number generator seeds at end of tests |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
295 %! rand ("state", rand_state); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
296 %! randn ("state", randn_state); |
6cb6e390e58c
svds.m: Correctly restore random seed state after %!tests
Rik <octave@nomad.inbox5.com>
parents:
13747
diff
changeset
|
297 |