]> gitweb.michael.orlitzky.com - octave.git/blobdiff - optimization/test_functions/rosenbrock_hessian.m
Replace ##-style comments with %-style comments in all non-test code.
[octave.git] / optimization / test_functions / rosenbrock_hessian.m
index 066b5aeaa5dfdf4cd44d6d0202a04d035c0a3ae8..ccbb84d4ba9e6880a4613ace099210ddbf1a509f 100644 (file)
@@ -1,8 +1,8 @@
 function H = rosenbrock_hessian(x1, x2)
-  ##
-  ## The Hessian of the Rosenbrock function. See rosenbrock.m for more
-  ## information.
-  ##
+  %
+  % The Hessian of the Rosenbrock function. See rosenbrock.m for more
+  % information.
+  %
   H = zeros(2,2);
   H(1,1) = 1200*x1^2 - 400*x2 + 2;
   H(1,2) = -400*x1;