changeset 20059: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 6645488466c7
children a59c5a16c9ab
files doc/interpreter/linalg.txi scripts/sparse/bicg.m scripts/sparse/bicgstab.m scripts/sparse/cgs.m scripts/sparse/gmres.m scripts/sparse/qmr.m
diffstat 6 files changed, 7 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/doc/interpreter/linalg.txi
+++ b/doc/interpreter/linalg.txi
@@ -217,3 +217,5 @@
 
 @DOCSTRING(gmres)
 
+@DOCSTRING(qmr)
+
--- a/scripts/sparse/bicg.m
+++ b/scripts/sparse/bicg.m
@@ -67,7 +67,7 @@
 ## iteration.
 ## @end itemize
 ##
-## @seealso{bicgstab, cgs, gmres, pcg}
+## @seealso{bicgstab, cgs, gmres, pcg, qmr}
 ##
 ## @end deftypefn
 
--- a/scripts/sparse/bicgstab.m
+++ b/scripts/sparse/bicgstab.m
@@ -67,7 +67,7 @@
 ## iteration.
 ## @end itemize
 ##
-## @seealso{bicg, cgs, gmres, pcg}
+## @seealso{bicg, cgs, gmres, pcg, qmr}
 ##
 ## @end deftypefn
 
--- a/scripts/sparse/cgs.m
+++ b/scripts/sparse/cgs.m
@@ -67,7 +67,7 @@
 ## each iteration.
 ## @end itemize
 ##
-## @seealso{pcg, bicgstab, bicg, gmres}
+## @seealso{pcg, bicgstab, bicg, gmres, qmr}
 ## @end deftypefn
 
 function [x, flag, relres, iter, resvec] = cgs (A, b, tol, maxit, M1, M2, x0)
--- a/scripts/sparse/gmres.m
+++ b/scripts/sparse/gmres.m
@@ -69,7 +69,7 @@
 ## iteration.
 ## @end itemize
 ##
-## @seealso{bicg, bicgstab, cgs, pcg}
+## @seealso{bicg, bicgstab, cgs, pcg, pcr, qmr}
 ## @end deftypefn
 
 function [x, flag, relres, it, resvec] = gmres (A, b, restart, rtol, maxit, M1, M2, x0)
--- a/scripts/sparse/qmr.m
+++ b/scripts/sparse/qmr.m
@@ -82,7 +82,7 @@
 ## for iterative methods}, SIAM, 2nd ed., 1994.
 ## @end enumerate
 ##
-## @seealso{bicg, bicgstab, cgs, gmres}
+## @seealso{bicg, bicgstab, cgs, gmres, pcg}
 ## @end deftypefn
 
 ## Author: Nathan Podlich <nathan.podlich@gmail.com>