# include # include # include # include "asa147.h" int main ( ); void test01 ( ); /******************************************************************************/ int main ( ) /******************************************************************************/ /* Purpose: MAIN is the main program for ASA147_TEST. Discussion: ASA147_TEST tests the ASA147 library. Licensing: This code is distributed under the GNU LGPL license. Modified: 11 November 2010 Author: John Burkardt */ { timestamp ( ); printf ( "\n" ); printf ( "ASA147_TEST:\n" ); printf ( " C version\n" ); printf ( " Test the ASA147 library.\n" ); test01 ( ); /* Terminate. */ printf ( "\n" ); printf ( "ASA147_TEST:\n" ); printf ( " Normal end of execution.\n" ); printf ( "\n" ); timestamp ( ); return 0; } /******************************************************************************/ void test01 ( ) /******************************************************************************/ /* Purpose: TEST01 demonstrates the use of GAMMDS. Licensing: This code is distributed under the GNU LGPL license. Modified: 11 November 2010 Author: John Burkardt */ { double a; double fx; double fx2; int ifault; int n_data; double x; printf ( "\n" ); printf ( "TEST01:\n" ); printf ( " GAMMDS computes the incomplete Gamma function.\n" ); printf ( " Compare to tabulated values.\n" ); printf ( "\n" ); printf ( " A X " ); printf ( " FX FX2\n" ); printf ( " " ); printf ( " (Tabulated) (GAMMDS) DIFF\n" ); printf ( "\n" ); n_data = 0; for ( ; ; ) { gamma_inc_values ( &n_data, &a, &x, &fx ); if ( n_data == 0 ) { break; } fx2 = gammds ( x, a, &ifault ); printf ( " %12.4f %12.4f %24.16g %24.16g %10.4e\n", a, x, fx, fx2, fabs ( fx - fx2 ) ); } return; }