function value = f_x_2d ( x, y ) %*****************************************************************************80 % %% F_X_2D evaluates the function X in 2D. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 14 February 2003 % % Author: % % John Burkardt % % Parameters: % % Input, real X, Y, the arguments. % % Output, real F_X_2D, the value of the function. % value = x; return end