X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=optimization%2Ftest_functions%2Fwood1.m;h=c0bfa201df4edded6be7e3e21c0598d523dd8056;hb=c3e7feb9a20fe34085814a2d32a9878e0b069ec6;hp=c34de26a9dfe738f59f595b5a5f3731cef472f32;hpb=8ed65c4235284698686734be82a9f073b90694d4;p=octave.git diff --git a/optimization/test_functions/wood1.m b/optimization/test_functions/wood1.m index c34de26..c0bfa20 100644 --- a/optimization/test_functions/wood1.m +++ b/optimization/test_functions/wood1.m @@ -1,9 +1,9 @@ function f = wood1(x) - ## - ## A version of the Wood function which takes a column 4-vector - ## instead of four distinct arguments. See wood.m for more - ## information. - ## + % + % A version of the Wood function which takes a column 4-vector + % instead of four distinct arguments. See wood.m for more + % information. + % if (length(x) == 4) f = wood(x(1), x(2), x(3), x(4)); else