function value = f_03 ( x ) %% F_03 evaluates x*exp(-x). % % Modified: % % 13 April 2008 % % Author: % % John Burkardt % % Parameters: % % Input, real X, the point at which F is to be evaluated. % % Output, real VALUE, the value of the function at X. % value = x * exp ( - x );