function [ a, b ] = p30_lim ( ) %*****************************************************************************80 % %% P30_LIM returns the integration limits for problem 30. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 04 November 2009 % % Author: % % John Burkardt % % Parameters: % % Output, real A, B, the lower and upper limits of integration. % a = 2.0; b = 7.0; return end