annotate scripts/sparse/bicgstab.m @ 19854:0a3ca546d7fc

doc: Add qmr to documentation. * linalg.txi: Add DOCSTRING entry for qmr in specialized solvers. bicg.m, bicgstab.m, cgs.m, gmres.m, qmr.m: Add qmr to seealso links.
author Rik <rik@octave.org>
date Tue, 24 Feb 2015 20:50:59 -0800
parents 9fc020886ae9
children df437a52bcaf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19697
4197fc428c7d maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents: 17744
diff changeset
1 ## Copyright (C) 2008-2015 Radek Salac
14138
72c96de7a403 maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents: 13929
diff changeset
2 ## Copyright (C) 2012 Carlo de Falco
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
3 ##
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
4 ## This file is part of Octave.
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
5 ##
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
6 ## Octave is free software; you can redistribute it and/or modify it
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
7 ## under the terms of the GNU General Public License as published by
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
8 ## the Free Software Foundation; either version 3 of the License, or (at
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
9 ## your option) any later version.
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
10 ##
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
11 ## Octave is distributed in the hope that it will be useful, but
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
14 ## General Public License for more details.
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
15 ##
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
16 ## You should have received a copy of the GNU General Public License
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
17 ## along with Octave; see the file COPYING. If not, see
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
18 ## <http://www.gnu.org/licenses/>.
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
19
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
20 ## -*- texinfo -*-
13929
9cae456085c2 Grammarcheck of documentation before 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents: 13837
diff changeset
21 ## @deftypefn {Function File} {@var{x} =} bicgstab (@var{A}, @var{b}, @var{rtol}, @var{maxit}, @var{M1}, @var{M2}, @var{x0})
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
22 ## @deftypefnx {Function File} {@var{x} =} bicgstab (@var{A}, @var{b}, @var{rtol}, @var{maxit}, @var{P})
13929
9cae456085c2 Grammarcheck of documentation before 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents: 13837
diff changeset
23 ## @deftypefnx {Function File} {[@var{x}, @var{flag}, @var{relres}, @var{iter}, @var{resvec}] =} bicgstab (@var{A}, @var{b}, @dots{})
9cae456085c2 Grammarcheck of documentation before 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents: 13837
diff changeset
24 ## Solve @code{A x = b} using the stabilizied Bi-conjugate gradient iterative
9cae456085c2 Grammarcheck of documentation before 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents: 13837
diff changeset
25 ## method.
13070
a0d854f079d2 codesprint: Fix building of docs for new bicg functions
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 13061
diff changeset
26 ##
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
27 ## @itemize @minus
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
28 ## @item @var{rtol} is the relative tolerance, if not given or set to
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
29 ## [] the default value 1e-6 is used.
13929
9cae456085c2 Grammarcheck of documentation before 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents: 13837
diff changeset
30 ##
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
31 ## @item @var{maxit} the maximum number of outer iterations, if not
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
32 ## given or set to [] the default value @code{min (20, numel (b))} is
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
33 ## used.
13929
9cae456085c2 Grammarcheck of documentation before 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents: 13837
diff changeset
34 ##
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
35 ## @item @var{x0} the initial guess, if not given or set to [] the
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
36 ## default value @code{zeros (size (b))} is used.
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
37 ## @end itemize
13070
a0d854f079d2 codesprint: Fix building of docs for new bicg functions
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 13061
diff changeset
38 ##
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
39 ## @var{A} can be passed as a matrix or as a function handle or
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
40 ## inline function @code{f} such that @code{f(x) = A*x}.
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
41 ##
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
42 ## The preconditioner @var{P} is given as @code{P = M1 * M2}.
13929
9cae456085c2 Grammarcheck of documentation before 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents: 13837
diff changeset
43 ## Both @var{M1} and @var{M2} can be passed as a matrix or as a function
9cae456085c2 Grammarcheck of documentation before 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents: 13837
diff changeset
44 ## handle or inline function @code{g} such that @code{g(x) = M1 \ x} or
9cae456085c2 Grammarcheck of documentation before 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents: 13837
diff changeset
45 ## @code{g(x) = M2 \ x}.
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
46 ##
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
47 ## If called with more than one output parameter
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
48 ##
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
49 ## @itemize @minus
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
50 ## @item @var{flag} indicates the exit status:
14853
72b8b39e12be doc: Periodic grammarcheck of documentation.
Rik <octave@nomad.inbox5.com>
parents: 14609
diff changeset
51 ##
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
52 ## @itemize @minus
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
53 ## @item 0: iteration converged to the within the chosen tolerance
13929
9cae456085c2 Grammarcheck of documentation before 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents: 13837
diff changeset
54 ##
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
55 ## @item 1: the maximum number of iterations was reached before convergence
13929
9cae456085c2 Grammarcheck of documentation before 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents: 13837
diff changeset
56 ##
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
57 ## @item 3: the algorithm reached stagnation
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
58 ## @end itemize
16816
12005245b645 doc: Periodic grammarcheck of documentation.
Rik <rik@octave.org>
parents: 14868
diff changeset
59 ##
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
60 ## (the value 2 is unused but skipped for compatibility).
13929
9cae456085c2 Grammarcheck of documentation before 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents: 13837
diff changeset
61 ##
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
62 ## @item @var{relres} is the final value of the relative residual.
13929
9cae456085c2 Grammarcheck of documentation before 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents: 13837
diff changeset
63 ##
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
64 ## @item @var{iter} is the number of iterations performed.
13929
9cae456085c2 Grammarcheck of documentation before 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents: 13837
diff changeset
65 ##
19833
9fc020886ae9 maint: Clean up m-files to follow Octave coding conventions.
Rik <rik@octave.org>
parents: 19700
diff changeset
66 ## @item @var{resvec} is a vector containing the relative residual at each
9fc020886ae9 maint: Clean up m-files to follow Octave coding conventions.
Rik <rik@octave.org>
parents: 19700
diff changeset
67 ## iteration.
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
68 ## @end itemize
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
69 ##
19854
0a3ca546d7fc doc: Add qmr to documentation.
Rik <rik@octave.org>
parents: 19833
diff changeset
70 ## @seealso{bicg, cgs, gmres, pcg, qmr}
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
71 ##
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
72 ## @end deftypefn
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
73
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
74 function [x, flag, relres, iter, resvec] = bicgstab (A, b, tol, maxit,
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
75 M1, M2, x0)
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
76
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
77 if (nargin >= 2 && nargin <= 7 && isvector (full (b)))
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
78
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
79 if (ischar (A))
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
80 A = str2func (A);
19700
00e31f316a3a Fix Matlab incompatibility of "ismatrix" (bug #42422).
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 19697
diff changeset
81 elseif (isnumeric(A) && ismatrix (A))
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
82 Ax = @(x) A * x;
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
83 elseif (isa (A, "function_handle"))
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
84 Ax = @(x) feval (A, x);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
85 else
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
86 error (["bicgstab: first argument is expected " ...
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
87 "to be a function or a square matrix"]);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
88 endif
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
89
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
90 if (nargin < 3 || isempty (tol))
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
91 tol = 1e-6;
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
92 endif
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
93
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
94 if (nargin < 4 || isempty (maxit))
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
95 maxit = min (rows (b), 20);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
96 endif
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
97
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
98 if (nargin < 5 || isempty (M1))
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
99 M1m1x = @(x) x;
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
100 elseif (ischar (M1))
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
101 M1m1x = str2func (M1);
19700
00e31f316a3a Fix Matlab incompatibility of "ismatrix" (bug #42422).
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 19697
diff changeset
102 elseif (isnumeric(M1) && ismatrix (M1))
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
103 M1m1x = @(x) M1 \ x;
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
104 elseif (isa (M1, "function_handle"))
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
105 M1m1x = @(x) feval (M1, x);
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
106 else
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
107 error (["bicgstab: preconditioner is " ...
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
108 "expected to be a function or matrix"]);
9279
1673a0dc019f fix & improve preconditioning strategy in cgs & bicgstab
Jaroslav Hajek <highegg@gmail.com>
parents: 9278
diff changeset
109 endif
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
110
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
111 if (nargin < 6 || isempty (M2))
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
112 M2m1x = @(x) x;
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
113 elseif (ischar (M2))
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
114 M2m1x = str2func (M2);
19700
00e31f316a3a Fix Matlab incompatibility of "ismatrix" (bug #42422).
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 19697
diff changeset
115 elseif (isnumeric(M2) && ismatrix (M2))
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
116 M2m1x = @(x) M2 \ x;
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
117 elseif (isa (M2, "function_handle"))
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
118 M2m1x = @(x) feval (M2, x);
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
119 else
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
120 error (["bicgstab: preconditioner is "...
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
121 "expected to be a function or matrix"]);
9279
1673a0dc019f fix & improve preconditioning strategy in cgs & bicgstab
Jaroslav Hajek <highegg@gmail.com>
parents: 9278
diff changeset
122 endif
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
123
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
124 precon = @(x) M2m1x (M1m1x (x));
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
125
13091
e5aaba072d2b maint: style fixes in iterative linear solvers
Carlo de Falco <kingcrimson@tiscali.it>
parents: 13070
diff changeset
126 if (nargin < 7 || isempty (x0))
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
127 x0 = zeros (size (b));
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
128 endif
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
129
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
130 ## specifies initial estimate x0
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
131 if (nargin < 7)
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
132 x = zeros (rows (b), 1);
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
133 else
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
134 x = x0;
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
135 endif
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
136
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
137 norm_b = norm (b);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
138
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
139 res = b - Ax (x);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
140 rr = res;
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
141
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
142 ## Vector of the residual norms for each iteration.
14868
5d3a684236b0 maint: Use Octave coding conventions for cuddling parentheses in scripts directory
Rik <octave@nomad.inbox5.com>
parents: 14853
diff changeset
143 resvec = norm (res) / norm_b;
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
144
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
145 ## Default behaviour we don't reach tolerance tol within maxit iterations.
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
146 flag = 1;
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
147
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
148 for iter = 1:maxit
17422
7ad3b9ca66f5 fix behaviour of bicgstab for complex matrices (bug #40017)
Marco Caliari <marco.caliari@univr.it>
parents: 16816
diff changeset
149 rho_1 = rr' * res;
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
150
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
151 if (iter == 1)
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
152 p = res;
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
153 else
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
154 beta = (rho_1 / rho_2) * (alpha / omega);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
155 p = res + beta * (p - omega * v);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
156 endif
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
157
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
158 phat = precon (p);
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
159
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
160 v = Ax (phat);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
161 alpha = rho_1 / (rr' * v);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
162 s = res - alpha * v;
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
163
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
164 shat = precon (s);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
165
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
166 t = Ax (shat);
17422
7ad3b9ca66f5 fix behaviour of bicgstab for complex matrices (bug #40017)
Marco Caliari <marco.caliari@univr.it>
parents: 16816
diff changeset
167 omega = (s' * t) / (t' * t);
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
168 x = x + alpha * phat + omega * shat;
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
169 res = s - omega * t;
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
170 rho_2 = rho_1;
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
171
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
172 relres = norm (res) / norm_b;
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
173 resvec = [resvec; relres];
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
174
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
175 if (relres <= tol)
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
176 ## We reach tolerance tol within maxit iterations.
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
177 flag = 0;
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
178 break;
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
179 elseif (resvec(end) == resvec(end - 1))
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
180 ## The method stagnates.
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
181 flag = 3;
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
182 break;
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
183 endif
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
184 endfor
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
185
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
186 if (nargout < 2)
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
187 if (flag == 0)
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
188 printf ("bicgstab converged at iteration %i ", iter);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
189 printf ("to a solution with relative residual %e\n", relres);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
190 elseif (flag == 3)
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
191 printf ("bicgstab stopped at iteration %i ", iter);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
192 printf ("without converging to the desired tolerance %e\n", tol);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
193 printf ("because the method stagnated.\n");
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
194 printf ("The iterate returned (number %i) ", iter);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
195 printf ("has relative residual %e\n", relres);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
196 else
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
197 printf ("bicgstab stopped at iteration %i ", iter);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
198 printf ("without converging to the desired toleranc %e\n", tol);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
199 printf ("because the maximum number of iterations was reached.\n");
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
200 printf ("The iterate returned (number %i) ", iter);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
201 printf ("has relative residual %e\n", relres);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
202 endif
9278
2b35cb600d50 improve bicgstab and cgs
Radek Salac <salac.r@gmail.com>
parents: 8920
diff changeset
203 endif
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
204
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
205 else
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
206 print_usage ();
9278
2b35cb600d50 improve bicgstab and cgs
Radek Salac <salac.r@gmail.com>
parents: 8920
diff changeset
207 endif
2b35cb600d50 improve bicgstab and cgs
Radek Salac <salac.r@gmail.com>
parents: 8920
diff changeset
208
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
209 endfunction
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
210
14237
11949c9795a0 Revamp %!demos in m-files to use Octave coding conventions on spacing, etc.
Rik <octave@nomad.inbox5.com>
parents: 14138
diff changeset
211
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
212 %!demo
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
213 %! % Solve system of A*x=b
14237
11949c9795a0 Revamp %!demos in m-files to use Octave coding conventions on spacing, etc.
Rik <octave@nomad.inbox5.com>
parents: 14138
diff changeset
214 %! A = [5 -1 3;-1 2 -2;3 -2 3];
11949c9795a0 Revamp %!demos in m-files to use Octave coding conventions on spacing, etc.
Rik <octave@nomad.inbox5.com>
parents: 14138
diff changeset
215 %! b = [7;-1;4];
11949c9795a0 Revamp %!demos in m-files to use Octave coding conventions on spacing, etc.
Rik <octave@nomad.inbox5.com>
parents: 14138
diff changeset
216 %! [x, flag, relres, iter, resvec] = bicgstab (A, b)
8416
0a56e5c21c29 Add the bicgstab function
Radek Salac <salac.r@gmail.com>
parents:
diff changeset
217
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
218 %!shared A, b, n, M1, M2
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
219 %!
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
220 %!test
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
221 %! n = 100;
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
222 %! A = spdiags ([-2*ones(n,1) 4*ones(n,1) -ones(n,1)], -1:1, n, n);
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
223 %! b = sum (A, 2);
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
224 %! tol = 1e-8;
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
225 %! maxit = 15;
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
226 %! M1 = spdiags ([ones(n,1)/(-2) ones(n,1)],-1:0, n, n);
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
227 %! M2 = spdiags ([4*ones(n,1) -ones(n,1)], 0:1, n, n);
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
228 %! [x, flag, relres, iter, resvec] = bicgstab (A, b, tol, maxit, M1, M2);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
229 %! assert (x, ones (size (b)), 1e-7);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
230 %!
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
231 %!test
13837
2c80bbd87f5d don't define functions in test and demo blocks
John W. Eaton <jwe@octave.org>
parents: 13141
diff changeset
232 %!function y = afun (x, a)
2c80bbd87f5d don't define functions in test and demo blocks
John W. Eaton <jwe@octave.org>
parents: 13141
diff changeset
233 %! y = a * x;
2c80bbd87f5d don't define functions in test and demo blocks
John W. Eaton <jwe@octave.org>
parents: 13141
diff changeset
234 %!endfunction
2c80bbd87f5d don't define functions in test and demo blocks
John W. Eaton <jwe@octave.org>
parents: 13141
diff changeset
235 %!
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
236 %! tol = 1e-8;
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
237 %! maxit = 15;
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
238 %!
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
239 %! [x, flag, relres, iter, resvec] = bicgstab (@(x) afun (x, A), b,
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
240 %! tol, maxit, M1, M2);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
241 %! assert (x, ones (size (b)), 1e-7);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
242
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
243 %!test
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
244 %! n = 100;
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
245 %! tol = 1e-8;
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
246 %! a = sprand (n, n, .1);
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
247 %! A = a'*a + 100 * eye (n);
13141
e81ddf9cacd5 maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 13091
diff changeset
248 %! b = sum (A, 2);
13061
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
249 %! [x, flag, relres, iter, resvec] = bicgstab (A, b, tol, [], diag (diag (A)));
addfc0ae69c0 Make bicgstab interface more compatible
Carlo de Falco <kingcrimson@tiscali.it>
parents: 11587
diff changeset
250 %! assert (x, ones (size (b)), 1e-7);
14363
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14237
diff changeset
251
17422
7ad3b9ca66f5 fix behaviour of bicgstab for complex matrices (bug #40017)
Marco Caliari <marco.caliari@univr.it>
parents: 16816
diff changeset
252 %!test
7ad3b9ca66f5 fix behaviour of bicgstab for complex matrices (bug #40017)
Marco Caliari <marco.caliari@univr.it>
parents: 16816
diff changeset
253 %! A = [1 + 1i, 1 + 1i; 2 - 1i, 2 + 1i];
7ad3b9ca66f5 fix behaviour of bicgstab for complex matrices (bug #40017)
Marco Caliari <marco.caliari@univr.it>
parents: 16816
diff changeset
254 %! b = A * [1; 1];
7ad3b9ca66f5 fix behaviour of bicgstab for complex matrices (bug #40017)
Marco Caliari <marco.caliari@univr.it>
parents: 16816
diff changeset
255 %! [x, flag, relres, iter, resvec] = bicgstab (A, b);
7ad3b9ca66f5 fix behaviour of bicgstab for complex matrices (bug #40017)
Marco Caliari <marco.caliari@univr.it>
parents: 16816
diff changeset
256 %! assert (x, [1; 1], 1e-6);