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