]> gitweb.michael.orlitzky.com - octave.git/blobdiff - optimization/test_functions/extended_rosenbrock_hessian1.m
Replace ##-style comments with %-style comments in all non-test code.
[octave.git] / optimization / test_functions / extended_rosenbrock_hessian1.m
index 9c3415d6d254d1d6ab821791754ce5ab61421656..541613d560ffa56d3e613e932b50bb12f75d7b4c 100644 (file)
@@ -1,15 +1,15 @@
 function H = extended_rosenbrock_hessian1(x)
-  ##
-  ## The Hessian of the extended Rosenbrock function. See
-  ## extended_rosenbrock1.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 Rosenbrock function. See
+  % extended_rosenbrock1.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