function x = p08_root ( i ) %*****************************************************************************80 % %% P08_ROOT returns a root for problem 8. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 07 May 2011 % % Author: % % John Burkardt % % Parameters: % % Input, integer I, the index of the requested root. % % Output, real X, the value of the root. % if ( i == 1 ) x = 0.7390851332151607; else fprintf ( 1, '\n' ); fprintf ( 1, 'P08_ROOT - Fatal error!\n' ); fprintf ( 1, ' Illegal root index = %d\n', i ); error ( 'P08_ROOT - Fatal error!' ); end return end