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