function owens_test01 ( ) %*****************************************************************************80 % %% TEST01 demonstrates the use of T. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 05 February 2008 % % Author: % % John Burkardt % fprintf ( 1, '\n' ); fprintf ( 1, 'TEST01:\n' ); fprintf ( 1, ' T evaluates Owen''s T function.\n' ); fprintf ( 1, ' Compare to tabulated values.\n' ); fprintf ( 1, '\n' ); fprintf ( 1, ' H A ' ); fprintf ( 1, 'T T\n' ); fprintf ( 1, ' ' ); fprintf ( 1, '(Tabulated) (T) DIFF\n' ); fprintf ( 1, '\n' ); n_data = 0; while ( 1 ) [ n_data, h, a, t1 ] = owen_values ( n_data ); if ( n_data == 0 ) break end t2 = t ( h, a ); fprintf ( 1, ' %12.8f %12.8f %24.16e %24.16e %10.4e\n', ... h, a, t1, t2, abs ( t1 - t2 ) ); end return end