X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=optimization%2Ftest_functions%2Fwood_hessian1.m;h=4af006a785994a697242ab3083576de7158126ed;hb=HEAD;hp=106cb403aef60337b946767d7b82df8ab5adf19e;hpb=8ed65c4235284698686734be82a9f073b90694d4;p=octave.git diff --git a/optimization/test_functions/wood_hessian1.m b/optimization/test_functions/wood_hessian1.m index 106cb40..4af006a 100644 --- a/optimization/test_functions/wood_hessian1.m +++ b/optimization/test_functions/wood_hessian1.m @@ -1,9 +1,9 @@ function H = wood_hessian1(x) - ## - ## A version of the wood_hessian() function which takes a column - ## 4-vector instead of four distinct arguments. See wood_hessian.m - ## for more information. - ## + % + % A version of the wood_hessian() function which takes a column + % 4-vector instead of four distinct arguments. See wood_hessian.m + % for more information. + % if (length(x) == 4) H = wood_hessian(x(1), x(2), x(3), x(4)); else