]> gitweb.michael.orlitzky.com - octave.git/blobdiff - optimization/test_functions/rosenbrock_hessian1.m
Replace ##-style comments with %-style comments in all non-test code.
[octave.git] / optimization / test_functions / rosenbrock_hessian1.m
index 63a105f9757cd204dccc900cce5a4647240e9a36..804098ecfb1535e524b805e1be9dfe3a41768492 100644 (file)
@@ -1,9 +1,9 @@
 function H = rosenbrock_hessian1(x)
-  ##
-  ## A version of the rosenbrock_hessian() function which takes a column
-  ## 2-vector instead of two distinct arguments. See rosenbrock_hessian.m
-  ## for more information.
-  ##
+  %
+  % A version of the rosenbrock_hessian() function which takes a column
+  % 2-vector instead of two distinct arguments. See rosenbrock_hessian.m
+  % for more information.
+  %
   if (length(x) == 2)
     H = rosenbrock_hessian(x(1), x(2));
   else