function [ a, b ] = p24_lim ( ) %*****************************************************************************80 % %% P24_LIM returns the integration limits for problem 24. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 04 November 2009 % % Author: % % John Burkardt % % Parameters: % % Output, real A, B, the limits of integration. % a = 0.0; b = 0.5; return end