]> gitweb.michael.orlitzky.com - octave.git/commitdiff
Fix a comment.
authorMichael Orlitzky <michael@orlitzky.com>
Sat, 4 May 2013 01:52:09 +0000 (21:52 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sat, 4 May 2013 01:52:09 +0000 (21:52 -0400)
optimization/preconditioned_conjugate_gradient_method.m

index e2f841aefea06ec92e8bb1e8dbe85eb5f2b65747..f3ff7e2fd56b36e99d6c478cb1a75a18f2bbe170 100644 (file)
@@ -14,8 +14,7 @@ function [x, k] = preconditioned_conjugate_gradient_method(Q, ...
   %   min [phi(x) = (1/2)*<Qx,x> + <b,x>]
   %
   % using the preconditioned conjugate gradient method (14.56 in
-  % Guler). If ``M`` is the identity matrix, we use the slightly
-  % faster implementation in conjugate_gradient_method.m.
+  % Guler).
   %
   % INPUT:
   %