function test_values_test112 ( ) %*****************************************************************************80 % %% TEST112 demonstrates the use of NORMAL_01_CDF_VALUES. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 03 November 2005 % % Author: % % John Burkardt % fprintf ( 1, '\n' ); fprintf ( 1, 'TEST112:\n' ); fprintf ( 1, ' NORMAL_01_CDF_VALUES stores values of\n' ); fprintf ( 1, ' the Normal 01 Cumulative Density Function.\n' ); fprintf ( 1, '\n' ); fprintf ( 1, ' X CDF(X)\n' ); fprintf ( 1, '\n' ); n_data = 0; while ( 1 ) [ n_data, x, fx ] = normal_01_cdf_values ( n_data ); if ( n_data == 0 ) break end fprintf ( 1, ' %24.16f %24.16f\n', x, fx ); end return end