function [ a, b ] = p27_lim ( ) %*****************************************************************************80 % %% P27_LIM returns the integration limits for problem 27. % % 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 = 1.0; return end