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