function f2 = p06_f2 ( x ) %*****************************************************************************80 % %% P06_F2 evaluates the second derivative for problem 6. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 26 February 2002 % % Author: % % John Burkardt % % Reference: % % LE Scales, % Introduction to Non-Linear Optimization, % Springer, 1985. % % Parameters: % % Input, real X, the values of the variables. % % Output, real F2, the second derivative. % f2 = 0.0; return end