]> gitweb.michael.orlitzky.com - octave.git/commitdiff
Don't take a redundant parameter in step_length_positive_definite().
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 25 Mar 2013 20:28:28 +0000 (16:28 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 25 Mar 2013 20:28:28 +0000 (16:28 -0400)
optimization/step_length_positive_definite.m

index 7e15a46513e7333a63f060385f353720745dbc29..5d3e8a0b2e92a1d4d4b54606ab9453b5a96be215 100644 (file)
@@ -1,4 +1,4 @@
-function alpha = step_length_positive_definite(g, Q, p)
+function alpha = step_length_positive_definite(g, Q)
   %
   % Find the minimizer alpha of,
   %
@@ -11,34 +11,33 @@ function alpha = step_length_positive_definite(g, Q, p)
   % and ``Q`` is positive-definite.
   %
   % The closed-form solution to this problem is given in Nocedal and
-  % Wright, (3.55).
+  % Wright, (3.55). The direction of steepest descent will always be
+  % the negative gradient direction; this simplified form is given in
+  % Guler.
   %
   % INPUT:
   %
   %   - ``g`` -- The gradient of f at x.
   %
   %   - ``Q`` -- The positive-definite matrix in the definition of
-  %     ``f`` above.
-  %
-  %   - ``p`` -- The direction in which ``f`` decreases. The line
-  %     along which we minimize f(x + alpha*p).
+  %   ``f`` above.
   %
   % OUTPUT:
   %
-  %   - ``alpha`` -- The value which causes ``f`` to decrease the
-  %     most.
+  %   - ``alpha`` -- The value which decreases ``f`` the most.
   %
   % NOTES:
   %
   % All vectors are assumed to be *column* vectors.
   %
-  denom = (p' * Q * p);
+  denom = (g' * Q * g);
 
-  if (abs(denom) < eps)
+  % denom is non-negative, since it's a Q-norm. No need to abs() it.
+  if (denom < eps)
     % Catch divide-by-zeros. If denom is effectively zero, set it to
     % something tiny instead. This trick is also used in the PCGM.
-    denom = sign(denom)*eps;
+    denom = eps;
   end
 
-  alpha = -(g' * p)/denom;
+  alpha = (g' * g)/denom;
 end