function value = h_01 ( x ) %% H_01 evaluates 2 - x. % % Modified: % % 14 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 = 2.0 - x;