function exact = p49_exact ( ) %*****************************************************************************80 % %% P49_EXACT returns the exact integral for problem 49. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 04 November 2009 % % Author: % % John Burkardt % % Parameters: % % Output, real EXACT, the value of the integral. % exact = 61.0 * log ( 2.0 ) + 77.0 * log ( 7.0 ) / 4.0 - 27.0; return end