annotate src/DLD-FUNCTIONS/eigs.cc @ 12083:2dbd6188b789 release-3-2-x

Minor typo in new eigs.cc test
author David Bateman <dbateman@free.fr>
date Thu, 03 Sep 2009 11:44:07 +0200
parents 92b5580c0145
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1 /*
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
2
8920
eb63fbe60fab update copyright notices
John W. Eaton <jwe@octave.org>
parents: 8845
diff changeset
3 Copyright (C) 2005, 2008, 2009 David Bateman
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
4
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
5 This file is part of Octave.
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
6
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
9 Free Software Foundation; either version 3 of the License, or (at your
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
10 option) any later version.
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
11
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
15 for more details.
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
16
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
18 along with Octave; see the file COPYING. If not, see
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
19 <http://www.gnu.org/licenses/>.
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
20
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
21 */
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
22
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
23 #ifdef HAVE_CONFIG_H
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
24 #include <config.h>
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
25 #endif
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
26
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
27 #include "ov.h"
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
28 #include "defun-dld.h"
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
29 #include "error.h"
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
30 #include "gripes.h"
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
31 #include "quit.h"
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
32 #include "variables.h"
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
33 #include "ov-re-sparse.h"
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
34 #include "ov-cx-sparse.h"
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
35 #include "oct-map.h"
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
36 #include "pager.h"
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
37 #include "unwind-prot.h"
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
38
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
39 #include "eigs-base.cc"
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
40
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
41 // Global pointer for user defined function.
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
42 static octave_function *eigs_fcn = 0;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
43
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
44 // Have we warned about imaginary values returned from user function?
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
45 static bool warned_imaginary = false;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
46
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
47 // Is this a recursive call?
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
48 static int call_depth = 0;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
49
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
50 ColumnVector
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
51 eigs_func (const ColumnVector &x, int &eigs_error)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
52 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
53 ColumnVector retval;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
54 octave_value_list args;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
55 args(0) = x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
56
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
57 if (eigs_fcn)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
58 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
59 octave_value_list tmp = eigs_fcn->do_multi_index_op (1, args);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
60
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
61 if (error_state)
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 eigs_error = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
64 gripe_user_supplied_eval ("eigs");
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
65 return retval;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
66 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
67
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
68 if (tmp.length () && tmp(0).is_defined ())
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
69 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
70 if (! warned_imaginary && tmp(0).is_complex_type ())
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
71 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
72 warning ("eigs: ignoring imaginary part returned from user-supplied function");
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
73 warned_imaginary = true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
74 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
75
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
76 retval = ColumnVector (tmp(0).vector_value ());
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
77
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
78 if (error_state)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
79 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
80 eigs_error = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
81 gripe_user_supplied_eval ("eigs");
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
82 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
83 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
84 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
85 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
86 eigs_error = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
87 gripe_user_supplied_eval ("eigs");
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
88 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
89 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
90
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
91 return retval;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
92 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
93
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
94 ComplexColumnVector
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
95 eigs_complex_func (const ComplexColumnVector &x, int &eigs_error)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
96 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
97 ComplexColumnVector retval;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
98 octave_value_list args;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
99 args(0) = x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
100
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
101 if (eigs_fcn)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
102 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
103 octave_value_list tmp = eigs_fcn->do_multi_index_op (1, args);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
104
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
105 if (error_state)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
106 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
107 eigs_error = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
108 gripe_user_supplied_eval ("eigs");
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
109 return retval;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
110 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
111
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
112 if (tmp.length () && tmp(0).is_defined ())
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
113 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
114 retval = ComplexColumnVector (tmp(0).complex_vector_value ());
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
115
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
116 if (error_state)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
117 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
118 eigs_error = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
119 gripe_user_supplied_eval ("eigs");
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
120 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
121 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
122 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
123 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
124 eigs_error = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
125 gripe_user_supplied_eval ("eigs");
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
126 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
127 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
128
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
129 return retval;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
130 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
131
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
132 DEFUN_DLD (eigs, args, nargout,
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
133 "-*- texinfo -*-\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
134 @deftypefn {Loadable Function} {@var{d}} = eigs (@var{a})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
135 @deftypefnx {Loadable Function} {@var{d}} = eigs (@var{a}, @var{k})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
136 @deftypefnx {Loadable Function} {@var{d}} = eigs (@var{a}, @var{k}, @var{sigma})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
137 @deftypefnx {Loadable Function} {@var{d}} = eigs (@var{a}, @var{k}, @var{sigma},@var{opts})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
138 @deftypefnx {Loadable Function} {@var{d}} = eigs (@var{a}, @var{b})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
139 @deftypefnx {Loadable Function} {@var{d}} = eigs (@var{a}, @var{b}, @var{k})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
140 @deftypefnx {Loadable Function} {@var{d}} = eigs (@var{a}, @var{b}, @var{k}, @var{sigma})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
141 @deftypefnx {Loadable Function} {@var{d}} = eigs (@var{a}, @var{b}, @var{k}, @var{sigma}, @var{opts})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
142 @deftypefnx {Loadable Function} {@var{d}} = eigs (@var{af}, @var{n})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
143 @deftypefnx {Loadable Function} {@var{d}} = eigs (@var{af}, @var{n}, @var{b})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
144 @deftypefnx {Loadable Function} {@var{d}} = eigs (@var{af}, @var{n}, @var{k})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
145 @deftypefnx {Loadable Function} {@var{d}} = eigs (@var{af}, @var{n}, @var{b}, @var{k})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
146 @deftypefnx {Loadable Function} {@var{d}} = eigs (@var{af}, @var{n}, @var{k}, @var{sigma})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
147 @deftypefnx {Loadable Function} {@var{d}} = eigs (@var{af}, @var{n}, @var{b}, @var{k}, @var{sigma})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
148 @deftypefnx {Loadable Function} {@var{d}} = eigs (@var{af}, @var{n}, @var{k}, @var{sigma}, @var{opts})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
149 @deftypefnx {Loadable Function} {@var{d}} = eigs (@var{af}, @var{n}, @var{b}, @var{k}, @var{sigma}, @var{opts})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
150 @deftypefnx {Loadable Function} {[@var{v}, @var{d}]} = eigs (@var{a}, @dots{})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
151 @deftypefnx {Loadable Function} {[@var{v}, @var{d}]} = eigs (@var{af}, @var{n}, @dots{})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
152 @deftypefnx {Loadable Function} {[@var{v}, @var{d}, @var{flag}]} = eigs (@var{a}, @dots{})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
153 @deftypefnx {Loadable Function} {[@var{v}, @var{d}, @var{flag}]} = eigs (@var{af}, @var{n}, @dots{})\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
154 Calculate a limited number of eigenvalues and eigenvectors of @var{a},\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
155 based on a selection criteria. The number eigenvalues and eigenvectors to\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
156 calculate is given by @var{k} whose default value is 6.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
157 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
158 By default @code{eigs} solve the equation\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
159 @iftex\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
160 @tex\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
161 $A \\nu = \\lambda \\nu$\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
162 @end tex\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
163 @end iftex\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
164 @ifinfo\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
165 @code{A * v = lambda * v}\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
166 @end ifinfo\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
167 , where\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
168 @iftex\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
169 @tex\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
170 $\\lambda$ is a scalar representing one of the eigenvalues, and $\\nu$\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
171 @end tex\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
172 @end iftex\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
173 @ifinfo\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
174 @code{lambda} is a scalar representing one of the eigenvalues, and @code{v}\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
175 @end ifinfo\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
176 is the corresponding eigenvector. If given the positive definite matrix\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
177 @var{B} then @code{eigs} solves the general eigenvalue equation\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
178 @iftex\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
179 @tex\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
180 $A \\nu = \\lambda B \\nu$\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
181 @end tex\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
182 @end iftex\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
183 @ifinfo\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
184 @code{A * v = lambda * B * v}\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
185 @end ifinfo\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
186 .\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
187 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
188 The argument @var{sigma} determines which eigenvalues are returned.\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
189 @var{sigma} can be either a scalar or a string. When @var{sigma} is a scalar,\n\
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
190 the @var{k} eigenvalues closest to @var{sigma} are returned. If @var{sigma}\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
191 is a string, it must have one of the values\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
192 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
193 @table @asis\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
194 @item 'lm'\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
195 Largest magnitude (default).\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
196 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
197 @item 'sm'\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
198 Smallest magnitude.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
199 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
200 @item 'la'\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
201 Largest Algebraic (valid only for real symmetric problems).\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
202 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
203 @item 'sa'\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
204 Smallest Algebraic (valid only for real symmetric problems).\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
205 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
206 @item 'be'\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
207 Both ends, with one more from the high-end if @var{k} is odd (valid only for\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
208 real symmetric problems).\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
209 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
210 @item 'lr'\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
211 Largest real part (valid only for complex or unsymmetric problems).\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
212 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
213 @item 'sr'\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
214 Smallest real part (valid only for complex or unsymmetric problems).\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
215 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
216 @item 'li'\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
217 Largest imaginary part (valid only for complex or unsymmetric problems).\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
218 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
219 @item 'si'\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
220 Smallest imaginary part (valid only for complex or unsymmetric problems).\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
221 @end table\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
222 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
223 If @var{opts} is given, it is a structure defining some of the options that\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
224 @code{eigs} should use. The fields of the structure @var{opts} are\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
225 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
226 @table @code\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
227 @item issym\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
228 If @var{af} is given, then flags whether the function @var{af} defines a\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
229 symmetric problem. It is ignored if @var{a} is given. The default is false.\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
230 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
231 @item isreal\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
232 If @var{af} is given, then flags whether the function @var{af} defines a\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
233 real problem. It is ignored if @var{a} is given. The default is true.\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
234 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
235 @item tol\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
236 Defines the required convergence tolerance, given as @code{tol * norm (A)}.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
237 The default is @code{eps}.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
238 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
239 @item maxit\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
240 The maximum number of iterations. The default is 300.\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
241 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
242 @item p\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
243 The number of Lanzcos basis vectors to use. More vectors will result in\n\
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
244 faster convergence, but a larger amount of memory. The optimal value of 'p'\n\
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
245 is problem dependent and should be in the range @var{k} to @var{n}. The\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
246 default value is @code{2 * @var{k}}.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
247 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
248 @item v0\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
249 The starting vector for the computation. The default is to have @sc{Arpack}\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
250 randomly generate a starting vector.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
251 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
252 @item disp\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
253 The level of diagnostic printout. If @code{disp} is 0 then there is no\n\
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
254 printout. The default value is 1.\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
255 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
256 @item cholB\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
257 Flag if @code{chol (@var{b})} is passed rather than @var{b}. The default is\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
258 false.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
259 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
260 @item permB\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
261 The permutation vector of the Cholesky factorization of @var{b} if\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
262 @code{cholB} is true. That is @code{chol ( @var{b} (permB, permB))}. The\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
263 default is @code{1:@var{n}}.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
264 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
265 @end table\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
266 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
267 It is also possible to represent @var{a} by a function denoted @var{af}.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
268 @var{af} must be followed by a scalar argument @var{n} defining the length\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
269 of the vector argument accepted by @var{af}. @var{af} can be passed either\n\
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
270 as an inline function, function handle or as a string. In the case where\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
271 @var{af} is passed as a string, the name of the string defines the function\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
272 to use.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
273 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
274 @var{af} is a function of the form @code{function y = af (x), y = @dots{};\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
275 endfunction}, where the required return value of @var{af} is determined by\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
276 the value of @var{sigma}, and are\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
277 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
278 @table @code\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
279 @item A * x\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
280 If @var{sigma} is not given or is a string other than 'sm'.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
281 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
282 @item A \\ x\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
283 If @var{sigma} is 'sm'.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
284 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
285 @item (A - sigma * I) \\ x\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
286 for standard eigenvalue problem, where @code{I} is the identity matrix of\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
287 the same size as @code{A}. If @var{sigma} is zero, this reduces the\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
288 @code{A \\ x}.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
289 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
290 @item (A - sigma * B) \\ x\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
291 for the general eigenvalue problem.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
292 @end table\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
293 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
294 The return arguments of @code{eigs} depends on the number of return\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
295 arguments. With a single return argument, a vector @var{d} of length @var{k}\n\
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
296 is returned, represent the @var{k} eigenvalues that have been found. With two\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
297 return arguments, @var{v} is a @var{n}-by-@var{k} matrix whose columns are\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
298 the @var{k} eigenvectors corresponding to the returned eigenvalues. The\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
299 eigenvalues themselves are then returned in @var{d} in the form of a\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
300 @var{n}-by-@var{k} matrix, where the elements on the diagonal are the\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
301 eigenvalues.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
302 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
303 Given a third return argument @var{flag}, @code{eigs} also returns the status\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
304 of the convergence. If @var{flag} is 0, then all eigenvalues have converged,\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
305 otherwise not.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
306 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
307 This function is based on the @sc{Arpack} package, written by R Lehoucq,\n\
9064
7c02ec148a3c Check grammar on all .cc files
Rik <rdrider0-list@yahoo.com>
parents: 8920
diff changeset
308 K Maschhoff, D Sorensen and C Yang. For more information see\n\
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
309 @url{http://www.caam.rice.edu/software/ARPACK/}.\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
310 \n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
311 @end deftypefn\n\
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
312 @seealso{eig, svds}")
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
313 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
314 octave_value_list retval;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
315 #ifdef HAVE_ARPACK
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
316 int nargin = args.length ();
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
317 std::string fcn_name;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
318 octave_idx_type n = 0;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
319 octave_idx_type k = 6;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
320 Complex sigma = 0.;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
321 double sigmar, sigmai;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
322 bool have_sigma = false;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
323 std::string typ = "LM";
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
324 Matrix amm, bmm, bmt;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
325 ComplexMatrix acm, bcm, bct;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
326 SparseMatrix asmm, bsmm, bsmt;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
327 SparseComplexMatrix ascm, bscm, bsct;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
328 int b_arg = 0;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
329 bool have_b = false;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
330 bool have_a_fun = false;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
331 bool a_is_complex = false;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
332 bool b_is_complex = false;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
333 bool symmetric = false;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
334 bool cholB = false;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
335 bool a_is_sparse = false;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
336 ColumnVector permB;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
337 int arg_offset = 0;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
338 double tol = DBL_EPSILON;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
339 int maxit = 300;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
340 int disp = 0;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
341 octave_idx_type p = -1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
342 ColumnVector resid;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
343 ComplexColumnVector cresid;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
344 octave_idx_type info = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
345 char bmat = 'I';
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
346
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
347 warned_imaginary = false;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
348
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
349 unwind_protect::begin_frame ("Feigs");
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
350
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
351 unwind_protect_int (call_depth);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
352 call_depth++;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
353
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
354 if (call_depth > 1)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
355 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
356 error ("eigs: invalid recursive call");
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
357 if (fcn_name.length())
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
358 clear_function (fcn_name);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
359 unwind_protect::run_frame ("Feigs");
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
360 return retval;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
361 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
362
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
363 if (nargin == 0)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
364 print_usage ();
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
365 else if (args(0).is_function_handle () || args(0).is_inline_function ()
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
366 || args(0).is_string ())
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
367 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
368 if (args(0).is_string ())
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
369 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
370 std::string name = args(0).string_value ();
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
371 std::string fname = "function y = ";
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
372 fcn_name = unique_symbol_name ("__eigs_fcn_");
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
373 fname.append (fcn_name);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
374 fname.append ("(x) y = ");
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
375 eigs_fcn = extract_function (args(0), "eigs", fcn_name, fname,
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
376 "; endfunction");
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
377 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
378 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
379 eigs_fcn = args(0).function_value ();
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
380
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
381 if (!eigs_fcn)
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
382 {
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
383 error ("eigs: unknown function");
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
384 return retval;
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
385 }
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
386
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
387 if (nargin < 2)
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
388 {
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
389 error ("eigs: incorrect number of arguments");
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
390 return retval;
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
391 }
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
392 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
393 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
394 n = args(1).nint_value ();
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
395 arg_offset = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
396 have_a_fun = true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
397 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
398 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
399 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
400 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
401 if (args(0).is_complex_type ())
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
402 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
403 if (args(0).is_sparse_type ())
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
404 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
405 ascm = (args(0).sparse_complex_matrix_value());
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
406 a_is_sparse = true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
407 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
408 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
409 acm = (args(0).complex_matrix_value());
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
410 a_is_complex = true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
411 symmetric = false; // ARAPACK doesn't special case complex symmetric
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
412 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
413 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
414 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
415 if (args(0).is_sparse_type ())
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
416 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
417 asmm = (args(0).sparse_matrix_value());
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
418 a_is_sparse = true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
419 symmetric = asmm.is_symmetric();
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
420 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
421 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
422 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
423 amm = (args(0).matrix_value());
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
424 symmetric = amm.is_symmetric();
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
425 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
426 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
427
12082
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
428 }
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
429
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
430 // Note hold off reading B till later to avoid issues of double
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
431 // copies of the matrix if B is full/real while A is complex..
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
432 if (!error_state && nargin > 1 + arg_offset &&
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
433 !(args(1 + arg_offset).is_real_scalar ()))
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
434 {
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
435 if (args(1+arg_offset).is_complex_type ())
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
436 {
12082
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
437 b_arg = 1+arg_offset;
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
438 have_b = true;
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
439 bmat = 'G';
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
440 b_is_complex = true;
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
441 arg_offset++;
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
442 }
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
443 else
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
444 {
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
445 b_arg = 1+arg_offset;
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
446 have_b = true;
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
447 bmat = 'G';
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
448 arg_offset++;
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
449 }
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
450 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
451
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
452 if (!error_state && nargin > (1+arg_offset))
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
453 k = args(1+arg_offset).nint_value ();
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
454
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
455 if (!error_state && nargin > (2+arg_offset))
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
456 {
8845
5a6db6bd1a02 eigs.cc (Feigs): fix handling of sigma arg
John W. Eaton <jwe@octave.org>
parents: 8702
diff changeset
457 if (args(2+arg_offset).is_string ())
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
458 {
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
459 typ = args(2+arg_offset).string_value ();
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
460
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
461 // Use STL function to convert to upper case
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
462 transform (typ.begin (), typ.end (), typ.begin (), toupper);
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
463
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
464 sigma = 0.;
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
465 }
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
466 else
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
467 {
8845
5a6db6bd1a02 eigs.cc (Feigs): fix handling of sigma arg
John W. Eaton <jwe@octave.org>
parents: 8702
diff changeset
468 sigma = args(2+arg_offset).complex_value ();
5a6db6bd1a02 eigs.cc (Feigs): fix handling of sigma arg
John W. Eaton <jwe@octave.org>
parents: 8702
diff changeset
469
5a6db6bd1a02 eigs.cc (Feigs): fix handling of sigma arg
John W. Eaton <jwe@octave.org>
parents: 8702
diff changeset
470 if (! error_state)
5a6db6bd1a02 eigs.cc (Feigs): fix handling of sigma arg
John W. Eaton <jwe@octave.org>
parents: 8702
diff changeset
471 have_sigma = true;
5a6db6bd1a02 eigs.cc (Feigs): fix handling of sigma arg
John W. Eaton <jwe@octave.org>
parents: 8702
diff changeset
472 else
5a6db6bd1a02 eigs.cc (Feigs): fix handling of sigma arg
John W. Eaton <jwe@octave.org>
parents: 8702
diff changeset
473 {
5a6db6bd1a02 eigs.cc (Feigs): fix handling of sigma arg
John W. Eaton <jwe@octave.org>
parents: 8702
diff changeset
474 error ("eigs: sigma must be a scalar or a string");
5a6db6bd1a02 eigs.cc (Feigs): fix handling of sigma arg
John W. Eaton <jwe@octave.org>
parents: 8702
diff changeset
475 return retval;
5a6db6bd1a02 eigs.cc (Feigs): fix handling of sigma arg
John W. Eaton <jwe@octave.org>
parents: 8702
diff changeset
476 }
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
477 }
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
478 }
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
479
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
480 sigmar = std::real (sigma);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
481 sigmai = std::imag (sigma);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
482
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
483 if (!error_state && nargin > (3+arg_offset))
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
484 {
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
485 if (args(3+arg_offset).is_map ())
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
486 {
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
487 Octave_map map = args(3+arg_offset).map_value ();
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
488
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
489 // issym is ignored if A is not a function
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
490 if (map.contains ("issym") && have_a_fun)
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
491 symmetric = map.contents ("issym")(0).double_value () != 0.;
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
492
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
493 // isreal is ignored if A is not a function
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
494 if (map.contains ("isreal") && have_a_fun)
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
495 a_is_complex = ! (map.contents ("isreal")(0).double_value () != 0.);
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
496
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
497 if (map.contains ("tol"))
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
498 tol = map.contents ("tol")(0).double_value ();
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
499
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
500 if (map.contains ("maxit"))
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
501 maxit = map.contents ("maxit")(0).nint_value ();
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
502
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
503 if (map.contains ("p"))
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
504 p = map.contents ("p")(0).nint_value ();
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
505
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
506 if (map.contains ("v0"))
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
507 {
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
508 if (a_is_complex || b_is_complex)
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
509 cresid = ComplexColumnVector
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
510 (map.contents ("v0")(0).complex_vector_value());
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
511 else
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
512 resid = ColumnVector (map.contents ("v0")(0).vector_value());
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
513 }
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
514
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
515 if (map.contains ("disp"))
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
516 disp = map.contents ("disp")(0).nint_value ();
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
517
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
518 if (map.contains ("cholB"))
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
519 cholB = map.contents ("cholB")(0).double_value () != 0.;
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
520
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
521 if (map.contains ("permB"))
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
522 permB = ColumnVector (map.contents ("permB")(0).vector_value ())
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
523 - 1.0;
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
524 }
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
525 else
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
526 {
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
527 error ("eigs: options argument must be a structure");
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
528 return retval;
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
529 }
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
530 }
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
531
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
532 if (nargin > (4+arg_offset))
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
533 {
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
534 error ("eigs: incorrect number of arguments");
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
535 return retval;
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
536 }
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
537
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
538 if (have_b)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
539 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
540 if (a_is_complex || b_is_complex)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
541 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
542 if (a_is_sparse)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
543 bscm = args(b_arg).sparse_complex_matrix_value ();
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
544 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
545 bcm = args(b_arg).complex_matrix_value ();
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
546 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
547 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
548 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
549 if (a_is_sparse)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
550 bsmm = args(b_arg).sparse_matrix_value ();
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
551 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
552 bmm = args(b_arg).matrix_value ();
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
553 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
554 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
555
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
556 // Mode 1 for SM mode seems unstable for some reason.
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
557 // Use Mode 3 instead, with sigma = 0.
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
558 if (!error_state && !have_sigma && typ == "SM")
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
559 have_sigma = true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
560
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
561 if (!error_state)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
562 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
563 octave_idx_type nconv;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
564 if (a_is_complex || b_is_complex)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
565 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
566 ComplexMatrix eig_vec;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
567 ComplexColumnVector eig_val;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
568
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
569
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
570 if (have_a_fun)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
571 nconv = EigsComplexNonSymmetricFunc
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
572 (eigs_complex_func, n, typ, sigma, k, p, info, eig_vec, eig_val,
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
573 cresid, octave_stdout, tol, (nargout > 1), cholB, disp, maxit);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
574 else if (have_sigma)
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
575 {
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
576 if (a_is_sparse)
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
577 nconv = EigsComplexNonSymmetricMatrixShift
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
578 (ascm, sigma, k, p, info, eig_vec, eig_val, bscm, permB,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
579 cresid, octave_stdout, tol, (nargout > 1), cholB, disp,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
580 maxit);
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
581 else
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
582 nconv = EigsComplexNonSymmetricMatrixShift
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
583 (acm, sigma, k, p, info, eig_vec, eig_val, bcm, permB, cresid,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
584 octave_stdout, tol, (nargout > 1), cholB, disp, maxit);
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
585 }
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
586 else
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
587 {
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
588 if (a_is_sparse)
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
589 nconv = EigsComplexNonSymmetricMatrix
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
590 (ascm, typ, k, p, info, eig_vec, eig_val, bscm, permB, cresid,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
591 octave_stdout, tol, (nargout > 1), cholB, disp, maxit);
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
592 else
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
593 nconv = EigsComplexNonSymmetricMatrix
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
594 (acm, typ, k, p, info, eig_vec, eig_val, bcm, permB, cresid,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
595 octave_stdout, tol, (nargout > 1), cholB, disp, maxit);
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
596 }
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
597
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
598 if (nargout < 2)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
599 retval (0) = eig_val;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
600 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
601 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
602 retval(2) = double (info);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
603 retval(1) = ComplexDiagMatrix (eig_val);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
604 retval(0) = eig_vec;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
605 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
606 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
607 else if (sigmai != 0.)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
608 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
609 // Promote real problem to a complex one.
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
610 ComplexMatrix eig_vec;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
611 ComplexColumnVector eig_val;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
612
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
613 if (have_a_fun)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
614 nconv = EigsComplexNonSymmetricFunc
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
615 (eigs_complex_func, n, typ, sigma, k, p, info, eig_vec, eig_val,
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
616 cresid, octave_stdout, tol, (nargout > 1), cholB, disp, maxit);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
617 else
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
618 {
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
619 if (a_is_sparse)
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
620 nconv = EigsComplexNonSymmetricMatrixShift
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
621 (SparseComplexMatrix (asmm), sigma, k, p, info, eig_vec,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
622 eig_val, SparseComplexMatrix (bsmm), permB, cresid,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
623 octave_stdout, tol, (nargout > 1), cholB, disp, maxit);
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
624 else
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
625 nconv = EigsComplexNonSymmetricMatrixShift
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
626 (ComplexMatrix (amm), sigma, k, p, info, eig_vec,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
627 eig_val, ComplexMatrix (bmm), permB, cresid,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
628 octave_stdout, tol, (nargout > 1), cholB, disp, maxit);
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
629 }
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
630
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
631 if (nargout < 2)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
632 retval (0) = eig_val;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
633 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
634 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
635 retval(2) = double (info);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
636 retval(1) = ComplexDiagMatrix (eig_val);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
637 retval(0) = eig_vec;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
638 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
639 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
640 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
641 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
642 if (symmetric)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
643 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
644 Matrix eig_vec;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
645 ColumnVector eig_val;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
646
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
647 if (have_a_fun)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
648 nconv = EigsRealSymmetricFunc
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
649 (eigs_func, n, typ, sigmar, k, p, info, eig_vec, eig_val,
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
650 resid, octave_stdout, tol, (nargout > 1), cholB, disp,
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
651 maxit);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
652 else if (have_sigma)
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
653 {
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
654 if (a_is_sparse)
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
655 nconv = EigsRealSymmetricMatrixShift
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
656 (asmm, sigmar, k, p, info, eig_vec, eig_val, bsmm, permB,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
657 resid, octave_stdout, tol, (nargout > 1), cholB, disp,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
658 maxit);
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
659 else
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
660 nconv = EigsRealSymmetricMatrixShift
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
661 (amm, sigmar, k, p, info, eig_vec, eig_val, bmm, permB,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
662 resid, octave_stdout, tol, (nargout > 1), cholB, disp,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
663 maxit);
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
664 }
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
665 else
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
666 {
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
667 if (a_is_sparse)
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
668 nconv = EigsRealSymmetricMatrix
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
669 (asmm, typ, k, p, info, eig_vec, eig_val, bsmm, permB,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
670 resid, octave_stdout, tol, (nargout > 1), cholB, disp,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
671 maxit);
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
672 else
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
673 nconv = EigsRealSymmetricMatrix
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
674 (amm, typ, k, p, info, eig_vec, eig_val, bmm, permB,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
675 resid, octave_stdout, tol, (nargout > 1), cholB, disp,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
676 maxit);
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
677 }
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
678
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
679 if (nargout < 2)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
680 retval (0) = eig_val;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
681 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
682 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
683 retval(2) = double (info);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
684 retval(1) = DiagMatrix (eig_val);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
685 retval(0) = eig_vec;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
686 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
687 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
688 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
689 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
690 ComplexMatrix eig_vec;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
691 ComplexColumnVector eig_val;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
692
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
693 if (have_a_fun)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
694 nconv = EigsRealNonSymmetricFunc
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
695 (eigs_func, n, typ, sigmar, k, p, info, eig_vec, eig_val,
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
696 resid, octave_stdout, tol, (nargout > 1), cholB, disp,
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
697 maxit);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
698 else if (have_sigma)
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
699 {
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
700 if (a_is_sparse)
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
701 nconv = EigsRealNonSymmetricMatrixShift
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
702 (asmm, sigmar, k, p, info, eig_vec, eig_val, bsmm, permB,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
703 resid, octave_stdout, tol, (nargout > 1), cholB, disp,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
704 maxit);
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
705 else
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
706 nconv = EigsRealNonSymmetricMatrixShift
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
707 (amm, sigmar, k, p, info, eig_vec, eig_val, bmm, permB,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
708 resid, octave_stdout, tol, (nargout > 1), cholB, disp,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
709 maxit);
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
710 }
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
711 else
8683
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
712 {
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
713 if (a_is_sparse)
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
714 nconv = EigsRealNonSymmetricMatrix
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
715 (asmm, typ, k, p, info, eig_vec, eig_val, bsmm, permB,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
716 resid, octave_stdout, tol, (nargout > 1), cholB, disp,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
717 maxit);
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
718 else
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
719 nconv = EigsRealNonSymmetricMatrix
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
720 (amm, typ, k, p, info, eig_vec, eig_val, bmm, permB,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
721 resid, octave_stdout, tol, (nargout > 1), cholB, disp,
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
722 maxit);
e4f89f4a7cf8 eigs.cc (Feigs): avoid warnings; style fixes; return after errors
John W. Eaton <jwe@octave.org>
parents: 8585
diff changeset
723 }
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
724
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
725 if (nargout < 2)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
726 retval (0) = eig_val;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
727 else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
728 {
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
729 retval(2) = double (info);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
730 retval(1) = ComplexDiagMatrix (eig_val);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
731 retval(0) = eig_vec;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
732 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
733 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
734 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
735
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
736 if (nconv <= 0)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
737 warning ("eigs: None of the %d requested eigenvalues converged", k);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
738 else if (nconv < k)
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
739 warning ("eigs: Only %d of the %d requested eigenvalues converged",
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
740 nconv, k);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
741 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
742
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
743 if (! fcn_name.empty ())
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
744 clear_function (fcn_name);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
745
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
746 unwind_protect::run_frame ("Feigs");
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
747 #else
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
748 error ("eigs: not available in this version of Octave");
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
749 #endif
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
750
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
751 return retval;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
752 }
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
753
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
754 /* #### SPARSE MATRIX VERSIONS #### */
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
755
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
756 /*
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
757
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
758 %% Real positive definite tests, n must be even
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
759 %!shared n, k, A, d0, d2
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
760 %! n = 20;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
761 %! k = 4;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
762 %! A = sparse([3:n,1:n,1:(n-2)],[1:(n-2),1:n,3:n],[ones(1,n-2),4*ones(1,n),ones(1,n-2)]);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
763 %! d0 = eig (A);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
764 %! d2 = sort(d0);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
765 %! [dum, idx] = sort( abs(d0));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
766 %! d0 = d0(idx);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
767 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
768 %! d1 = eigs (A, k);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
769 %! assert (d1, d0(end:-1:(end-k+1)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
770 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
771 %! d1 = eigs (A,k+1);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
772 %! assert (d1, d0(end:-1:(end-k)),1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
773 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
774 %! d1 = eigs (A, k, 'lm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
775 %! assert (d1, d0(end:-1:(end-k+1)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
776 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
777 %! d1 = eigs (A, k, 'sm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
778 %! assert (d1, d0(k:-1:1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
779 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
780 %! d1 = eigs (A, k, 'la');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
781 %! assert (d1, d2(end:-1:(end-k+1)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
782 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
783 %! d1 = eigs (A, k, 'sa');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
784 %! assert (d1, d2(1:k), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
785 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
786 %! d1 = eigs (A, k, 'be');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
787 %! assert (d1, d2([1:floor(k/2), (end - ceil(k/2) + 1):end]), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
788 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
789 %! d1 = eigs (A, k+1, 'be');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
790 %! assert (d1, d2([1:floor((k+1)/2), (end - ceil((k+1)/2) + 1):end]), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
791 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
792 %! d1 = eigs (A, k, 4.1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
793 %! [dum,idx0] = sort (abs(d0 - 4.1));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
794 %! [dum,idx1] = sort (abs(d1 - 4.1));
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
795 %! assert (d1(idx1), d0(idx0(1:k)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
796 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
797 %! d1 = eigs(A, speye(n), k, 'lm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
798 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8585
e6497be3f3d6 Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents: 8420
diff changeset
799 %!testif HAVE_ARPACK
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
800 %! assert (eigs(A,k,4.1), eigs(A,speye(n),k,4.1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
801 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
802 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
803 %! d1 = eigs(A, speye(n), k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
804 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
805 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
806 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
807 %! q = [2:n,1];
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
808 %! opts.permB=q;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
809 %! d1 = eigs(A, speye(n)(q,q), k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
810 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
811 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
812 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
813 %! d1 = eigs(A, speye(n), k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
814 %! assert (abs(d1), eigs(A,k,4.1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
815 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
816 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
817 %! q = [2:n,1];
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
818 %! opts.permB=q;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
819 %! d1 = eigs(A, speye(n)(q,q), k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
820 %! assert (abs(d1), eigs(A,k,4.1), 1e-11);
8585
e6497be3f3d6 Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents: 8420
diff changeset
821 %!testif HAVE_ARPACK
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
822 %! assert (eigs(A,k,4.1), eigs(A,speye(n),k,4.1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
823 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
824 %! fn = @(x) A * x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
825 %! opts.issym = 1; opts.isreal = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
826 %! d1 = eigs (fn, n, k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
827 %! assert (d1, d0(end:-1:(end-k+1)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
828 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
829 %! fn = @(x) A \ x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
830 %! opts.issym = 1; opts.isreal = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
831 %! d1 = eigs (fn, n, k, 'sm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
832 %! assert (d1, d0(k:-1:1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
833 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
834 %! fn = @(x) (A - 4.1 * eye(n)) \ x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
835 %! opts.issym = 1; opts.isreal = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
836 %! d1 = eigs (fn, n, k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
837 %! assert (d1, eigs(A,k,4.1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
838 %!testif HAVE_ARPACK
12082
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
839 %! AA = speye (10);
12083
2dbd6188b789 Minor typo in new eigs.cc test
David Bateman <dbateman@free.fr>
parents: 12082
diff changeset
840 %! fn = @(x) AA * x;
12082
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
841 %! opts.issym = 1; opts.isreal = 1;
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
842 %! assert (eigs (fn, 10, AA, 3, 'lm', opts), [1; 1; 1]);
92b5580c0145 Fix nesting error in options parsing of eigs
David Bateman <dbateman@free.fr>
parents: 9064
diff changeset
843 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
844 %! [v1,d1] = eigs(A, k, 'lm');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
845 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
846 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
847 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
848 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
849 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
850 %! [v1,d1] = eigs(A, k, 'sm');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
851 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
852 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
853 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
854 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
855 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
856 %! [v1,d1] = eigs(A, k, 'la');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
857 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
858 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
859 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
860 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
861 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
862 %! [v1,d1] = eigs(A, k, 'sa');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
863 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
864 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
865 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
866 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
867 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
868 %! [v1,d1] = eigs(A, k, 'be');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
869 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
870 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
871 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
872 %! endfor
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
873
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
874 */
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
875
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
876 /*
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
877
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
878 %% Real unsymmetric tests
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
879 %!shared n, k, A, d0
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
880 %! n = 20;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
881 %! k = 4;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
882 %! A = sparse([3:n,1:n,1:(n-2)],[1:(n-2),1:n,3:n],[ones(1,n-2),1:n,-ones(1,n-2)]);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
883 %! d0 = eig (A);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
884 %! [dum, idx] = sort(abs(d0));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
885 %! d0 = d0(idx);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
886 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
887 %! d1 = eigs (A, k);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
888 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
889 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
890 %! d1 = eigs (A,k+1);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
891 %! assert (abs(d1), abs(d0(end:-1:(end-k))),1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
892 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
893 %! d1 = eigs (A, k, 'lm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
894 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
895 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
896 %! d1 = eigs (A, k, 'sm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
897 %! assert (abs(d1), abs(d0(1:k)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
898 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
899 %! d1 = eigs (A, k, 'lr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
900 %! [dum, idx] = sort (real(d0));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
901 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
902 %! assert (real(d1), real(d2(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
903 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
904 %! d1 = eigs (A, k, 'sr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
905 %! [dum, idx] = sort (real(abs(d0)));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
906 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
907 %! assert (real(d1), real(d2(1:k)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
908 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
909 %! d1 = eigs (A, k, 'li');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
910 %! [dum, idx] = sort (imag(abs(d0)));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
911 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
912 %! assert (sort(imag(d1)), sort(imag(d2(end:-1:(end-k+1)))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
913 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
914 %! d1 = eigs (A, k, 'si');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
915 %! [dum, idx] = sort (imag(abs(d0)));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
916 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
917 %! assert (sort(imag(d1)), sort(imag(d2(1:k))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
918 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
919 %! d1 = eigs (A, k, 4.1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
920 %! [dum,idx0] = sort (abs(d0 - 4.1));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
921 %! [dum,idx1] = sort (abs(d1 - 4.1));
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
922 %! assert (abs(d1(idx1)), abs(d0(idx0(1:k))), 1e-11);
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
923 %! assert (sort(imag(d1(idx1))), sort(imag(d0(idx0(1:k)))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
924 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
925 %! d1 = eigs(A, speye(n), k, 'lm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
926 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
927 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
928 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
929 %! d1 = eigs(A, speye(n), k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
930 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
931 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
932 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
933 %! q = [2:n,1];
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
934 %! opts.permB=q;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
935 %! d1 = eigs(A, speye(n)(q,q), k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
936 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
937 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
938 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
939 %! d1 = eigs(A, speye(n), k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
940 %! assert (abs(d1), eigs(A,k,4.1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
941 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
942 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
943 %! q = [2:n,1];
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
944 %! opts.permB=q;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
945 %! d1 = eigs(A, speye(n)(q,q), k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
946 %! assert (abs(d1), eigs(A,k,4.1), 1e-11);
8585
e6497be3f3d6 Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents: 8420
diff changeset
947 %!testif HAVE_ARPACK
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
948 %! assert (abs(eigs(A,k,4.1)), abs(eigs(A,speye(n),k,4.1)), 1e-11);
8585
e6497be3f3d6 Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents: 8420
diff changeset
949 %!testif HAVE_ARPACK
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
950 %! assert (sort(imag(eigs(A,k,4.1))), sort(imag(eigs(A,speye(n),k,4.1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
951 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
952 %! fn = @(x) A * x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
953 %! opts.issym = 0; opts.isreal = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
954 %! d1 = eigs (fn, n, k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
955 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
956 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
957 %! fn = @(x) A \ x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
958 %! opts.issym = 0; opts.isreal = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
959 %! d1 = eigs (fn, n, k, 'sm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
960 %! assert (abs(d1), d0(1:k), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
961 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
962 %! fn = @(x) (A - 4.1 * eye(n)) \ x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
963 %! opts.issym = 0; opts.isreal = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
964 %! d1 = eigs (fn, n, k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
965 %! assert (abs(d1), eigs(A,k,4.1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
966 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
967 %! [v1,d1] = eigs(A, k, 'lm');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
968 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
969 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
970 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
971 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
972 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
973 %! [v1,d1] = eigs(A, k, 'sm');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
974 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
975 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
976 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
977 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
978 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
979 %! [v1,d1] = eigs(A, k, 'lr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
980 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
981 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
982 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
983 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
984 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
985 %! [v1,d1] = eigs(A, k, 'sr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
986 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
987 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
988 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
989 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
990 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
991 %! [v1,d1] = eigs(A, k, 'li');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
992 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
993 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
994 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
995 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
996 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
997 %! [v1,d1] = eigs(A, k, 'si');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
998 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
999 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1000 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1001 %! endfor
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1002
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1003 */
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1004
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1005 /*
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1006
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1007 %% Complex hermitian tests
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1008 %!shared n, k, A, d0
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1009 %! n = 20;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1010 %! k = 4;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1011 %! A = sparse([3:n,1:n,1:(n-2)],[1:(n-2),1:n,3:n],[1i*ones(1,n-2),4*ones(1,n),-1i*ones(1,n-2)]);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1012 %! d0 = eig (A);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1013 %! [dum, idx] = sort(abs(d0));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1014 %! d0 = d0(idx);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1015 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1016 %! d1 = eigs (A, k);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1017 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1018 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1019 %! d1 = eigs (A,k+1);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1020 %! assert (abs(d1), abs(d0(end:-1:(end-k))),1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1021 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1022 %! d1 = eigs (A, k, 'lm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1023 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1024 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1025 %! d1 = eigs (A, k, 'sm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1026 %! assert (abs(d1), abs(d0(1:k)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1027 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1028 %! d1 = eigs (A, k, 'lr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1029 %! [dum, idx] = sort (real(abs(d0)));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1030 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1031 %! assert (real(d1), real(d2(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1032 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1033 %! d1 = eigs (A, k, 'sr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1034 %! [dum, idx] = sort (real(abs(d0)));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1035 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1036 %! assert (real(d1), real(d2(1:k)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1037 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1038 %! d1 = eigs (A, k, 'li');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1039 %! [dum, idx] = sort (imag(abs(d0)));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1040 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1041 %! assert (sort(imag(d1)), sort(imag(d2(end:-1:(end-k+1)))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1042 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1043 %! d1 = eigs (A, k, 'si');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1044 %! [dum, idx] = sort (imag(abs(d0)));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1045 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1046 %! assert (sort(imag(d1)), sort(imag(d2(1:k))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1047 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1048 %! d1 = eigs (A, k, 4.1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1049 %! [dum,idx0] = sort (abs(d0 - 4.1));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1050 %! [dum,idx1] = sort (abs(d1 - 4.1));
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1051 %! assert (abs(d1(idx1)), abs(d0(idx0(1:k))), 1e-11);
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1052 %! assert (sort(imag(d1(idx1))), sort(imag(d0(idx0(1:k)))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1053 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1054 %! d1 = eigs(A, speye(n), k, 'lm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1055 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1056 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1057 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1058 %! d1 = eigs(A, speye(n), k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1059 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1060 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1061 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1062 %! q = [2:n,1];
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1063 %! opts.permB=q;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1064 %! d1 = eigs(A, speye(n)(q,q), k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1065 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1066 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1067 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1068 %! d1 = eigs(A, speye(n), k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1069 %! assert (abs(abs(d1)), abs(eigs(A,k,4.1)), 1e-11);
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1070 %! assert (sort(imag(abs(d1))), sort(imag(eigs(A,k,4.1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1071 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1072 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1073 %! q = [2:n,1];
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1074 %! opts.permB=q;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1075 %! d1 = eigs(A, speye(n)(q,q), k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1076 %! assert (abs(abs(d1)), abs(eigs(A,k,4.1)), 1e-11);
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1077 %! assert (sort(imag(abs(d1))), sort(imag(eigs(A,k,4.1))), 1e-11);
8585
e6497be3f3d6 Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents: 8420
diff changeset
1078 %!testif HAVE_ARPACK
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1079 %! assert (abs(eigs(A,k,4.1)), abs(eigs(A,speye(n),k,4.1)), 1e-11);
8585
e6497be3f3d6 Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents: 8420
diff changeset
1080 %!testif HAVE_ARPACK
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1081 %! assert (sort(imag(eigs(A,k,4.1))), sort(imag(eigs(A,speye(n),k,4.1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1082 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1083 %! fn = @(x) A * x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1084 %! opts.issym = 0; opts.isreal = 0;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1085 %! d1 = eigs (fn, n, k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1086 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1087 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1088 %! fn = @(x) A \ x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1089 %! opts.issym = 0; opts.isreal = 0;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1090 %! d1 = eigs (fn, n, k, 'sm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1091 %! assert (abs(d1), d0(1:k), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1092 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1093 %! fn = @(x) (A - 4.1 * eye(n)) \ x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1094 %! opts.issym = 0; opts.isreal = 0;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1095 %! d1 = eigs (fn, n, k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1096 %! assert (abs(d1), eigs(A,k,4.1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1097 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1098 %! [v1,d1] = eigs(A, k, 'lm');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1099 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1100 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1101 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1102 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1103 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1104 %! [v1,d1] = eigs(A, k, 'sm');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1105 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1106 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1107 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1108 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1109 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1110 %! [v1,d1] = eigs(A, k, 'lr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1111 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1112 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1113 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1114 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1115 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1116 %! [v1,d1] = eigs(A, k, 'sr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1117 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1118 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1119 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1120 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1121 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1122 %! [v1,d1] = eigs(A, k, 'li');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1123 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1124 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1125 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1126 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1127 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1128 %! [v1,d1] = eigs(A, k, 'si');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1129 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1130 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1131 %! assert(max(abs((A - d1(i)*speye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1132 %! endfor
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1133
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1134 */
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1135
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1136 /* #### FULL MATRIX VERSIONS #### */
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1137
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1138 /*
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1139
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1140 %% Real positive definite tests, n must be even
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1141 %!shared n, k, A, d0, d2
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1142 %! n = 20;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1143 %! k = 4;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1144 %! A = full(sparse([3:n,1:n,1:(n-2)],[1:(n-2),1:n,3:n],[ones(1,n-2),4*ones(1,n),ones(1,n-2)]));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1145 %! d0 = eig (A);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1146 %! d2 = sort(d0);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1147 %! [dum, idx] = sort( abs(d0));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1148 %! d0 = d0(idx);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1149 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1150 %! d1 = eigs (A, k);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1151 %! assert (d1, d0(end:-1:(end-k+1)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1152 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1153 %! d1 = eigs (A,k+1);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1154 %! assert (d1, d0(end:-1:(end-k)),1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1155 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1156 %! d1 = eigs (A, k, 'lm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1157 %! assert (d1, d0(end:-1:(end-k+1)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1158 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1159 %! d1 = eigs (A, k, 'sm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1160 %! assert (d1, d0(k:-1:1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1161 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1162 %! d1 = eigs (A, k, 'la');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1163 %! assert (d1, d2(end:-1:(end-k+1)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1164 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1165 %! d1 = eigs (A, k, 'sa');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1166 %! assert (d1, d2(1:k), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1167 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1168 %! d1 = eigs (A, k, 'be');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1169 %! assert (d1, d2([1:floor(k/2), (end - ceil(k/2) + 1):end]), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1170 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1171 %! d1 = eigs (A, k+1, 'be');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1172 %! assert (d1, d2([1:floor((k+1)/2), (end - ceil((k+1)/2) + 1):end]), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1173 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1174 %! d1 = eigs (A, k, 4.1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1175 %! [dum,idx0] = sort (abs(d0 - 4.1));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1176 %! [dum,idx1] = sort (abs(d1 - 4.1));
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1177 %! assert (d1(idx1), d0(idx0(1:k)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1178 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1179 %! d1 = eigs(A, eye(n), k, 'lm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1180 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8585
e6497be3f3d6 Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents: 8420
diff changeset
1181 %!testif HAVE_ARPACK
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1182 %! assert (eigs(A,k,4.1), eigs(A,eye(n),k,4.1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1183 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1184 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1185 %! d1 = eigs(A, eye(n), k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1186 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1187 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1188 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1189 %! q = [2:n,1];
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1190 %! opts.permB=q;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1191 %! d1 = eigs(A, eye(n)(q,q), k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1192 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1193 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1194 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1195 %! d1 = eigs(A, eye(n), k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1196 %! assert (abs(d1), eigs(A,k,4.1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1197 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1198 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1199 %! q = [2:n,1];
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1200 %! opts.permB=q;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1201 %! d1 = eigs(A, eye(n)(q,q), k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1202 %! assert (abs(d1), eigs(A,k,4.1), 1e-11);
8585
e6497be3f3d6 Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents: 8420
diff changeset
1203 %!testif HAVE_ARPACK
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1204 %! assert (eigs(A,k,4.1), eigs(A,eye(n),k,4.1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1205 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1206 %! fn = @(x) A * x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1207 %! opts.issym = 1; opts.isreal = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1208 %! d1 = eigs (fn, n, k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1209 %! assert (d1, d0(end:-1:(end-k+1)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1210 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1211 %! fn = @(x) A \ x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1212 %! opts.issym = 1; opts.isreal = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1213 %! d1 = eigs (fn, n, k, 'sm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1214 %! assert (d1, d0(k:-1:1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1215 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1216 %! fn = @(x) (A - 4.1 * eye(n)) \ x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1217 %! opts.issym = 1; opts.isreal = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1218 %! d1 = eigs (fn, n, k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1219 %! assert (d1, eigs(A,k,4.1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1220 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1221 %! [v1,d1] = eigs(A, k, 'lm');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1222 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1223 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1224 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1225 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1226 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1227 %! [v1,d1] = eigs(A, k, 'sm');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1228 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1229 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1230 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1231 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1232 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1233 %! [v1,d1] = eigs(A, k, 'la');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1234 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1235 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1236 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1237 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1238 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1239 %! [v1,d1] = eigs(A, k, 'sa');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1240 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1241 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1242 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1243 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1244 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1245 %! [v1,d1] = eigs(A, k, 'be');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1246 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1247 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1248 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1249 %! endfor
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1250
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1251 */
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1252
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1253 /*
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1254
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1255 %% Real unsymmetric tests
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1256 %!shared n, k, A, d0
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1257 %! n = 20;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1258 %! k = 4;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1259 %! A = full(sparse([3:n,1:n,1:(n-2)],[1:(n-2),1:n,3:n],[ones(1,n-2),1:n,-ones(1,n-2)]));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1260 %! d0 = eig (A);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1261 %! [dum, idx] = sort(abs(d0));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1262 %! d0 = d0(idx);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1263 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1264 %! d1 = eigs (A, k);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1265 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1266 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1267 %! d1 = eigs (A,k+1);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1268 %! assert (abs(d1), abs(d0(end:-1:(end-k))),1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1269 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1270 %! d1 = eigs (A, k, 'lm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1271 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1272 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1273 %! d1 = eigs (A, k, 'sm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1274 %! assert (abs(d1), abs(d0(1:k)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1275 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1276 %! d1 = eigs (A, k, 'lr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1277 %! [dum, idx] = sort (real(d0));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1278 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1279 %! assert (real(d1), real(d2(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1280 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1281 %! d1 = eigs (A, k, 'sr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1282 %! [dum, idx] = sort (real(abs(d0)));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1283 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1284 %! assert (real(d1), real(d2(1:k)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1285 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1286 %! d1 = eigs (A, k, 'li');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1287 %! [dum, idx] = sort (imag(abs(d0)));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1288 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1289 %! assert (sort(imag(d1)), sort(imag(d2(end:-1:(end-k+1)))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1290 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1291 %! d1 = eigs (A, k, 'si');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1292 %! [dum, idx] = sort (imag(abs(d0)));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1293 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1294 %! assert (sort(imag(d1)), sort(imag(d2(1:k))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1295 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1296 %! d1 = eigs (A, k, 4.1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1297 %! [dum,idx0] = sort (abs(d0 - 4.1));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1298 %! [dum,idx1] = sort (abs(d1 - 4.1));
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1299 %! assert (abs(d1(idx1)), abs(d0(idx0(1:k))), 1e-11);
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1300 %! assert (sort(imag(d1(idx1))), sort(imag(d0(idx0(1:k)))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1301 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1302 %! d1 = eigs(A, eye(n), k, 'lm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1303 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1304 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1305 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1306 %! d1 = eigs(A, eye(n), k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1307 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1308 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1309 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1310 %! q = [2:n,1];
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1311 %! opts.permB=q;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1312 %! d1 = eigs(A, eye(n)(q,q), k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1313 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1314 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1315 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1316 %! d1 = eigs(A, eye(n), k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1317 %! assert (abs(d1), eigs(A,k,4.1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1318 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1319 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1320 %! q = [2:n,1];
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1321 %! opts.permB=q;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1322 %! d1 = eigs(A, eye(n)(q,q), k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1323 %! assert (abs(d1), eigs(A,k,4.1), 1e-11);
8585
e6497be3f3d6 Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents: 8420
diff changeset
1324 %!testif HAVE_ARPACK
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1325 %! assert (abs(eigs(A,k,4.1)), abs(eigs(A,eye(n),k,4.1)), 1e-11);
8585
e6497be3f3d6 Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents: 8420
diff changeset
1326 %!testif HAVE_ARPACK
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1327 %! assert (sort(imag(eigs(A,k,4.1))), sort(imag(eigs(A,eye(n),k,4.1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1328 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1329 %! fn = @(x) A * x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1330 %! opts.issym = 0; opts.isreal = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1331 %! d1 = eigs (fn, n, k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1332 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1333 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1334 %! fn = @(x) A \ x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1335 %! opts.issym = 0; opts.isreal = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1336 %! d1 = eigs (fn, n, k, 'sm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1337 %! assert (abs(d1), d0(1:k), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1338 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1339 %! fn = @(x) (A - 4.1 * eye(n)) \ x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1340 %! opts.issym = 0; opts.isreal = 1;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1341 %! d1 = eigs (fn, n, k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1342 %! assert (abs(d1), eigs(A,k,4.1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1343 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1344 %! [v1,d1] = eigs(A, k, 'lm');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1345 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1346 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1347 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1348 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1349 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1350 %! [v1,d1] = eigs(A, k, 'sm');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1351 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1352 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1353 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1354 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1355 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1356 %! [v1,d1] = eigs(A, k, 'lr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1357 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1358 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1359 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1360 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1361 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1362 %! [v1,d1] = eigs(A, k, 'sr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1363 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1364 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1365 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1366 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1367 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1368 %! [v1,d1] = eigs(A, k, 'li');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1369 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1370 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1371 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1372 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1373 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1374 %! [v1,d1] = eigs(A, k, 'si');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1375 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1376 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1377 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1378 %! endfor
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1379
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1380 */
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1381
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1382 /*
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1383
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1384 %% Complex hermitian tests
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1385 %!shared n, k, A, d0
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1386 %! n = 20;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1387 %! k = 4;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1388 %! A = full(sparse([3:n,1:n,1:(n-2)],[1:(n-2),1:n,3:n],[1i*ones(1,n-2),4*ones(1,n),-1i*ones(1,n-2)]));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1389 %! d0 = eig (A);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1390 %! [dum, idx] = sort(abs(d0));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1391 %! d0 = d0(idx);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1392 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1393 %! d1 = eigs (A, k);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1394 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1395 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1396 %! d1 = eigs (A,k+1);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1397 %! assert (abs(d1), abs(d0(end:-1:(end-k))),1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1398 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1399 %! d1 = eigs (A, k, 'lm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1400 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1401 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1402 %! d1 = eigs (A, k, 'sm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1403 %! assert (abs(d1), abs(d0(1:k)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1404 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1405 %! d1 = eigs (A, k, 'lr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1406 %! [dum, idx] = sort (real(abs(d0)));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1407 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1408 %! assert (real(d1), real(d2(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1409 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1410 %! d1 = eigs (A, k, 'sr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1411 %! [dum, idx] = sort (real(abs(d0)));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1412 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1413 %! assert (real(d1), real(d2(1:k)), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1414 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1415 %! d1 = eigs (A, k, 'li');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1416 %! [dum, idx] = sort (imag(abs(d0)));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1417 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1418 %! assert (sort(imag(d1)), sort(imag(d2(end:-1:(end-k+1)))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1419 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1420 %! d1 = eigs (A, k, 'si');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1421 %! [dum, idx] = sort (imag(abs(d0)));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1422 %! d2 = d0(idx);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1423 %! assert (sort(imag(d1)), sort(imag(d2(1:k))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1424 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1425 %! d1 = eigs (A, k, 4.1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1426 %! [dum,idx0] = sort (abs(d0 - 4.1));
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1427 %! [dum,idx1] = sort (abs(d1 - 4.1));
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1428 %! assert (abs(d1(idx1)), abs(d0(idx0(1:k))), 1e-11);
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1429 %! assert (sort(imag(d1(idx1))), sort(imag(d0(idx0(1:k)))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1430 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1431 %! d1 = eigs(A, eye(n), k, 'lm');
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1432 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1433 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1434 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1435 %! d1 = eigs(A, eye(n), k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1436 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1437 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1438 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1439 %! q = [2:n,1];
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1440 %! opts.permB=q;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1441 %! d1 = eigs(A, eye(n)(q,q), k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1442 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1443 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1444 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1445 %! d1 = eigs(A, eye(n), k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1446 %! assert (abs(abs(d1)), abs(eigs(A,k,4.1)), 1e-11);
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1447 %! assert (sort(imag(abs(d1))), sort(imag(eigs(A,k,4.1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1448 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1449 %! opts.cholB=true;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1450 %! q = [2:n,1];
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1451 %! opts.permB=q;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1452 %! d1 = eigs(A, eye(n)(q,q), k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1453 %! assert (abs(abs(d1)), abs(eigs(A,k,4.1)), 1e-11);
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1454 %! assert (sort(imag(abs(d1))), sort(imag(eigs(A,k,4.1))), 1e-11);
8585
e6497be3f3d6 Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents: 8420
diff changeset
1455 %!testif HAVE_ARPACK
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1456 %! assert (abs(eigs(A,k,4.1)), abs(eigs(A,eye(n),k,4.1)), 1e-11);
8585
e6497be3f3d6 Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents: 8420
diff changeset
1457 %!testif HAVE_ARPACK
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1458 %! assert (sort(imag(eigs(A,k,4.1))), sort(imag(eigs(A,eye(n),k,4.1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1459 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1460 %! fn = @(x) A * x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1461 %! opts.issym = 0; opts.isreal = 0;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1462 %! d1 = eigs (fn, n, k, 'lm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1463 %! assert (abs(d1), abs(d0(end:-1:(end-k+1))), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1464 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1465 %! fn = @(x) A \ x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1466 %! opts.issym = 0; opts.isreal = 0;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1467 %! d1 = eigs (fn, n, k, 'sm', opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1468 %! assert (abs(d1), d0(1:k), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1469 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1470 %! fn = @(x) (A - 4.1 * eye(n)) \ x;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1471 %! opts.issym = 0; opts.isreal = 0;
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1472 %! d1 = eigs (fn, n, k, 4.1, opts);
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1473 %! assert (abs(d1), eigs(A,k,4.1), 1e-11);
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1474 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1475 %! [v1,d1] = eigs(A, k, 'lm');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1476 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1477 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1478 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1479 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1480 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1481 %! [v1,d1] = eigs(A, k, 'sm');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1482 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1483 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1484 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1485 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1486 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1487 %! [v1,d1] = eigs(A, k, 'lr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1488 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1489 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1490 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1491 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1492 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1493 %! [v1,d1] = eigs(A, k, 'sr');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1494 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1495 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1496 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1497 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1498 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1499 %! [v1,d1] = eigs(A, k, 'li');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1500 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1501 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1502 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1503 %! endfor
8420
9038f311c1a8 eigs.cc: skip tests if ARPACK is missing
John W. Eaton <jwe@octave.org>
parents: 8417
diff changeset
1504 %!testif HAVE_ARPACK
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1505 %! [v1,d1] = eigs(A, k, 'si');
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1506 %! d1 = diag(d1);
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1507 %! for i=1:k
8702
3c4628550318 eigs.cc: increase tolerance
John W. Eaton <jwe@octave.org>
parents: 8683
diff changeset
1508 %! assert(max(abs((A - d1(i)*eye(n))*v1(:,i))),0.,1e-11)
8417
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1509 %! endfor
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1510
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1511 */
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1512
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1513 /*
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1514 ;;; Local Variables: ***
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1515 ;;; mode: C++ ***
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1516 ;;; End: ***
654bcfb937bf Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
diff changeset
1517 */