]> gitweb.michael.orlitzky.com - octave.git/blobdiff - optimization/test_functions/rosenbrock.m
Replace ##-style comments with %-style comments in all non-test code.
[octave.git] / optimization / test_functions / rosenbrock.m
index 8073a0ae10adfe92ff703abc25abbed24567de97..22b2730726846aaa8f3b5b99f8f433c0a1596a4b 100644 (file)
@@ -1,11 +1,11 @@
 function f = rosenbrock(x1, x2)
-  ##
-  ## The Rosenbrock function. See Dennis & Schnabel, Appendix B, problem #1.
-  ## (The "regular" Rosenbrock function is simply the Extended Rosenbrock
-  ## with m=1).
-  ##
-  ## This function has a minimum at x=(1,1) with f(x) == 0. The
-  ## suggested starting point is x0=(-1.2, 1).
-  ##
+  %
+  % The Rosenbrock function. See Dennis & Schnabel, Appendix B, problem #1.
+  % (The "regular" Rosenbrock function is simply the Extended Rosenbrock
+  % with m=1).
+  %
+  % This function has a minimum at x=(1,1) with f(x) == 0. The
+  % suggested starting point is x0=(-1.2, 1).
+  %
   f = 100*(x2 - x1^2)^2 + (1 - x1)^2;
 end