From 059b7d62db67bcb6e636f2dd7f3cfe415d8d000c Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 22 Mar 2013 16:37:20 -0400 Subject: [PATCH] Fix an inline #-comment. --- optimization/steepest_descent.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.43.2