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