X-Git-Url: http://gitweb.michael.orlitzky.com/?p=octave.git;a=blobdiff_plain;f=optimization%2Ftest_functions%2Fextended_rosenbrock_gradient1.m;h=cbda9a84ce328d81b3845cfa6df3723732915f44;hp=2fd3c8cc63b2c8033fb9ececcb2bb84f1b36bf5c;hb=b12c6c2a4bf4cef29b2e08b743c92889505c7ed9;hpb=e1b71b4ca7cfa08ac76744a17a3778d4ccfaa7e2 diff --git a/optimization/test_functions/extended_rosenbrock_gradient1.m b/optimization/test_functions/extended_rosenbrock_gradient1.m index 2fd3c8c..cbda9a8 100644 --- a/optimization/test_functions/extended_rosenbrock_gradient1.m +++ b/optimization/test_functions/extended_rosenbrock_gradient1.m @@ -1,15 +1,15 @@ function g = extended_rosenbrock_gradient1(x) - ## - ## The gradient 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 gradient 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. g = NA; return; end