]> gitweb.michael.orlitzky.com - octave.git/blobdiff - optimization/test_functions/himmelblau_hessian1.m
Replace ##-style comments with %-style comments in all non-test code.
[octave.git] / optimization / test_functions / himmelblau_hessian1.m
index 84efb3100c4582e58b96c9755f231de2fcd835b3..bf4b56162a46d3673dead735ada273656d379cc9 100644 (file)
@@ -1,9 +1,9 @@
 function H = himmelblau_hessian1(x)
-  ##
-  ## A version of the himmelblau_hessian() function which takes a column
-  ## 2-vector instead of two distinct arguments. See himmelblau_hessian.m
-  ## for more information.
-  ##
+  %
+  % A version of the himmelblau_hessian() function which takes a column
+  % 2-vector instead of two distinct arguments. See himmelblau_hessian.m
+  % for more information.
+  %
   if (length(x) == 2)
     H = himmelblau_hessian(x(1), x(2));
   else