X-Git-Url: http://gitweb.michael.orlitzky.com/?p=octave.git;a=blobdiff_plain;f=optimization%2Ftest_functions%2Fpowell_gradient1.m;h=63868cd7dd81f177a774dd5fddf25820cdc39eb5;hp=e21b315cfac37bccca2133a7eee8655b23998a84;hb=b12c6c2a4bf4cef29b2e08b743c92889505c7ed9;hpb=e1b71b4ca7cfa08ac76744a17a3778d4ccfaa7e2 diff --git a/optimization/test_functions/powell_gradient1.m b/optimization/test_functions/powell_gradient1.m index e21b315..63868cd 100644 --- a/optimization/test_functions/powell_gradient1.m +++ b/optimization/test_functions/powell_gradient1.m @@ -1,9 +1,9 @@ function g = powell_gradient1(x) - ## - ## A version of the powell_gradient() function which takes a column - ## 4-vector instead of four distinct arguments. See - ## powell_gradient.m for more information. - ## + % + % A version of the powell_gradient() function which takes a column + % 4-vector instead of four distinct arguments. See + % powell_gradient.m for more information. + % if (length(x) == 4) g = powell_gradient(x(1), x(2), x(3), x(4)); else