function g = p24_g ( n, x ) %*****************************************************************************80 % %% P24_G evaluates the gradient for problem 24. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 31 December 2000 % % Author: % % John Burkardt % % Parameters: % % Input, integer N, the number of variables. % % Input, real X(N), the values of the variables. % % Output, real G(N), the gradient of the objective function. % g = zeros ( n, 1 ); return end