]> gitweb.michael.orlitzky.com - octave.git/blobdiff - optimization/test_functions/wood_hessian.m
Replace ##-style comments with %-style comments in all non-test code.
[octave.git] / optimization / test_functions / wood_hessian.m
index f8e38c4456404f4fbcfe7acf14fd7f88f03ac9fb..e71f180bb0600fad5360a5e8e1b8da608fb7fe21 100644 (file)
@@ -1,8 +1,8 @@
 function H = wood_hessian(x1, x2, x3, x4)
-  ##
-  ## The Hessian of the Wood function. See wood.m for more
-  ## information.
-  ##
+  %
+  % The Hessian of the Wood function. See wood.m for more
+  % information.
+  %
   H = zeros(4,4);
   H(1,1) = 1200*x(1)^2 - 400*x(2) + 2;
   H(1,2) = -400*x(1);