comparison scripts/sparse/qmr.m @ 19888: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 21dbaf135667
comparison
equal deleted inserted replaced
19887:6645488466c7 19888:0a3ca546d7fc
80 ## V. Eijkhour, R. Pozo, C. Romine, and H. van der Vorst, 80 ## V. Eijkhour, R. Pozo, C. Romine, and H. van der Vorst,
81 ## @cite{Templates for the solution of linear systems: Building blocks 81 ## @cite{Templates for the solution of linear systems: Building blocks
82 ## for iterative methods}, SIAM, 2nd ed., 1994. 82 ## for iterative methods}, SIAM, 2nd ed., 1994.
83 ## @end enumerate 83 ## @end enumerate
84 ## 84 ##
85 ## @seealso{bicg, bicgstab, cgs, gmres} 85 ## @seealso{bicg, bicgstab, cgs, gmres, pcg}
86 ## @end deftypefn 86 ## @end deftypefn
87 87
88 ## Author: Nathan Podlich <nathan.podlich@gmail.com> 88 ## Author: Nathan Podlich <nathan.podlich@gmail.com>
89 89
90 function [x, flag, relres, iter, resvec] = qmr (A, b, tol, maxit, M1, M2, x0) 90 function [x, flag, relres, iter, resvec] = qmr (A, b, tol, maxit, M1, M2, x0)