function test_values_test0845 ( ) %*****************************************************************************80 % %% TEST0845 demonstrates the use of HYPER_2F1_VALUES. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 02 February 2009 % % Author: % % John Burkardt % fprintf ( 1, '\n' ); fprintf ( 1, 'TEST0845:\n' ); fprintf ( 1, ' HYPER_2F1_VALUES stores values of \n' ); fprintf ( 1, ' the hypergeometric 2F1 function.\n' ); fprintf ( 1, '\n' ); fprintf ( 1, ' A B C X Hyper_2F1(A,B,C,X)\n' ); fprintf ( 1, '\n' ); n_data = 0; while ( 1 ) [ n_data, a, b, c, x, fx ] = hyper_2f1_values ( n_data ); if ( n_data == 0 ) break end fprintf ( 1, ' %8f %8f %8f %8f %24.16g\n', a, b, c, x, fx ); end return end