]> gitweb.michael.orlitzky.com - octave.git/blobdiff - optimization/test_functions/powell1.m
Replace ##-style comments with %-style comments in all non-test code.
[octave.git] / optimization / test_functions / powell1.m
index b5e1771471658e5c89959107dacc6a3f8808d68d..52937b579fcc9b0a6303ec16bee5fc89cb4a7278 100644 (file)
@@ -1,8 +1,8 @@
 function f = powell1(x)
-  ##
-  ## A version of the Powell function which takes a column 4-vector as
-  ## an argument instead of four distinct arguments.
-  ##
+  %
+  % A version of the Powell function which takes a column 4-vector as
+  % an argument instead of four distinct arguments.
+  %
   if (length(x) == 4)
     f = powell(x(1), x(2), x(3), x(4));
   else