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