]> gitweb.michael.orlitzky.com - octave.git/blobdiff - optimization/test_functions/extended_powell_hessian1.m
Replace ##-style comments with %-style comments in all non-test code.
[octave.git] / optimization / test_functions / extended_powell_hessian1.m
index 972e690da5d83c0d667fff69a2169b3ade8b12bf..4d5f50f96a4544c356368a9b73e5559757a3567d 100644 (file)
@@ -1,15 +1,15 @@
 function H = extended_powell_hessian1(x)
-  ##
-  ## The Hessian 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 Hessian 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.
     H = NA;
     return;
   end