X-Git-Url: http://gitweb.michael.orlitzky.com/?p=octave.git;a=blobdiff_plain;f=optimization%2Ftest_functions%2Fpowell_hessian.m;h=248149ceef34c14e75913c601b2ba051d1a4ab49;hp=48cc390df91b3ac1436bb3ead7c2190c9a3a500a;hb=b12c6c2a4bf4cef29b2e08b743c92889505c7ed9;hpb=e1b71b4ca7cfa08ac76744a17a3778d4ccfaa7e2 diff --git a/optimization/test_functions/powell_hessian.m b/optimization/test_functions/powell_hessian.m index 48cc390..248149c 100644 --- a/optimization/test_functions/powell_hessian.m +++ b/optimization/test_functions/powell_hessian.m @@ -1,8 +1,8 @@ function H = powell_hessian(x1, x2, x3, x4) - ## - ## The Hessian of the Powell function. See powell.m for more - ## information. - ## + % + % The Hessian of the Powell function. See powell.m for more + % information. + % H = zeros(4,4); H(1,1) = 120*(x1 - x4)^2 + 2;