function range = p09_range ( ) %*****************************************************************************80 % %% P09_RANGE returns an interval bounding the root for problem 9. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 06 May 2011 % % Author: % % John Burkardt % % Parameters: % % Output, real RANGE(2), the minimum and maximum values of % an interval containing the root. % range(1) = - 5.0; range(2) = + 16.0; return end