]> gitweb.michael.orlitzky.com - octave.git/blob - optimization/test_functions/wood_gradient1.m
Add an octaverc which modifies the load path and improved MATLAB compatibility.
[octave.git] / optimization / test_functions / wood_gradient1.m
1 function g = wood_gradient1(x)
2 ##
3 ## A version of the wood_gradient() function which takes a column
4 ## 4-vector instead of four distinct arguments. See wood_gradient.m
5 ## for more information.
6 ##
7 g = wood_gradient(x(1), x(2), x(3), x(4));
8 end