]> gitweb.michael.orlitzky.com - octave.git/blobdiff - optimization/test_functions/extended_powell_gradient1.m
Replace ##-style comments with %-style comments in all non-test code.
[octave.git] / optimization / test_functions / extended_powell_gradient1.m
index 7cc7aabf2980c2b3e65f791d631644f6db240b10..f60d5a8b246dc3abb07551d2cb5273083e2b2329 100644 (file)
@@ -1,15 +1,15 @@
 function g = extended_powell_gradient1(x)
-  ##
-  ## The gradient of the extended Powell function. See
-  ## extended_powell1.m for more information.
-  ##
-  ## Since the number of arguments is variable, we take a vector
-  ## instead of its individual components.
-  ##
+  %
+  % The gradient of the extended Powell function. See
+  % extended_powell1.m for more information.
+  %
+  % Since the number of arguments is variable, we take a vector
+  % instead of its individual components.
+  %
   n = length(x);
 
   if (odd(n))
-    ## 'm' below must be an integer.
+    % 'm' below must be an integer.
     g = NA;
     return;
   end