function value = f_05 ( x ) %% F_05 evaluates (x+3)*(x-1)*(x-1). % % 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 + 3.0 ) * ( x - 1.0 ) * ( x - 1.0 );