]> gitweb.michael.orlitzky.com - octave.git/blobdiff - optimization/test_functions/powell_hessian.m
Replace ##-style comments with %-style comments in all non-test code.
[octave.git] / optimization / test_functions / powell_hessian.m
index 48cc390df91b3ac1436bb3ead7c2190c9a3a500a..248149ceef34c14e75913c601b2ba051d1a4ab49 100644 (file)
@@ -1,8 +1,8 @@
 function H = powell_hessian(x1, x2, x3, x4)
-  ##
-  ## The Hessian of the Powell function. See powell.m for more
-  ## information.
-  ##
+  %
+  % The Hessian of the Powell function. See powell.m for more
+  % information.
+  %
   H = zeros(4,4);
 
   H(1,1) = 120*(x1 - x4)^2 + 2;