X-Git-Url: http://gitweb.michael.orlitzky.com/?p=octave.git;a=blobdiff_plain;f=optimization%2Ftest_functions%2Fwood_hessian.m;h=e71f180bb0600fad5360a5e8e1b8da608fb7fe21;hp=f8e38c4456404f4fbcfe7acf14fd7f88f03ac9fb;hb=b12c6c2a4bf4cef29b2e08b743c92889505c7ed9;hpb=e1b71b4ca7cfa08ac76744a17a3778d4ccfaa7e2 diff --git a/optimization/test_functions/wood_hessian.m b/optimization/test_functions/wood_hessian.m index f8e38c4..e71f180 100644 --- a/optimization/test_functions/wood_hessian.m +++ b/optimization/test_functions/wood_hessian.m @@ -1,8 +1,8 @@ function H = wood_hessian(x1, x2, x3, x4) - ## - ## The Hessian of the Wood function. See wood.m for more - ## information. - ## + % + % The Hessian of the Wood function. See wood.m for more + % information. + % H = zeros(4,4); H(1,1) = 1200*x(1)^2 - 400*x(2) + 2; H(1,2) = -400*x(1);