X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=optimization%2Ftest_functions%2Fwood_gradient.m;h=eb9f3e643051d2d751faff487fda218934e5a1bf;hb=4cf95f960c61165130795e7b5197cfe6e2829692;hp=f4dde786039ed9e1250ed2589e3555891d877b6f;hpb=87d434fa93b3e52e8a5a0a9d99ae43492c35e1be;p=octave.git diff --git a/optimization/test_functions/wood_gradient.m b/optimization/test_functions/wood_gradient.m index f4dde78..eb9f3e6 100644 --- a/optimization/test_functions/wood_gradient.m +++ b/optimization/test_functions/wood_gradient.m @@ -1,6 +1,7 @@ function g = wood_gradient(x1, x2, x3, x4) ## - ## The gradient of the Wood function. See wood.m for more information. + ## The gradient of the Wood function. See wood.m for more + ## information. ## f_x1 = 400*(x1^2 - x2)*x1 + 2*x1 - 2; f_x2 = -200*x1^2 + 220.2*x2 + 19.8*x4 - 40;