From: Michael Orlitzky Date: Fri, 22 Mar 2013 20:37:20 +0000 (-0400) Subject: Fix an inline #-comment. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=octave.git;a=commitdiff_plain;h=059b7d62db67bcb6e636f2dd7f3cfe415d8d000c;ds=sidebyside Fix an inline #-comment. --- diff --git a/optimization/steepest_descent.m b/optimization/steepest_descent.m index 7a437d3..4fb3329 100644 --- a/optimization/steepest_descent.m +++ b/optimization/steepest_descent.m @@ -54,7 +54,7 @@ function [x, k] = steepest_descent(g, x0, step_size, tolerance, max_iterations) % condition (number of iterations). if (norm(gk) < tolerance) - # This catches the k=0 case, too. + % This catches the k=0 case, too. x = xk; return; end