]> gitweb.michael.orlitzky.com - octave.git/commitdiff
Fix function name in vanilla_cgm.m.
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 20 Mar 2013 05:15:50 +0000 (01:15 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 20 Mar 2013 05:15:50 +0000 (01:15 -0400)
Remove unused vector in vanilla_cgm().

optimization/vanilla_cgm.m

index 2c94487a65508e876903343abf457cda853bb929..3a72b144fc6e623f76e9148817b7f50ec487177d 100644 (file)
@@ -1,4 +1,4 @@
-function [x, k] = conjugate_gradient_method(A, b, x0, tolerance, max_iterations)
+function [x, k] = vanilla_cgm(A, b, x0, tolerance, max_iterations)
   %
   % Solve,
   %
@@ -36,8 +36,6 @@ function [x, k] = conjugate_gradient_method(A, b, x0, tolerance, max_iterations)
   %
   % All vectors are assumed to be *column* vectors.
   %
-  zero_vector = zeros(length(x0), 1);
-
   k = 0;
   x = x0; % Eschew the 'k' suffix on 'x' for simplicity.
   rk = A*x - b; % The first residual must be computed the hard way.