function polpak_test0695 ( ) %*****************************************************************************80 % %% TEST0695 demonstrates the use of SIN_POWER_INT_VALUES. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 19 October 2008 % % Author: % % John Burkardt % fprintf ( 1, '\n' ); fprintf ( 1, 'TEST0695\n' ); fprintf ( 1, ' SIN_POWER_INT returns values of\n' ); fprintf ( 1, ' the integral of SIN(X)^N from A to B.\n' ); fprintf ( 1, '\n' ); fprintf ( 1, ' A B N Exact Computed\n' ); fprintf ( 1, '\n' ); n_data = 0; while ( 1 ) [ n_data, a, b, n, fx ] = sin_power_int_values ( n_data ); if ( n_data == 0 ) break; end fx2 = sin_power_int ( a, b, n ); fprintf ( 1, ' %8f %8f %6d %14e %14e\n', a, b, n, fx, fx2 ); end return end