# include # include # include # include # include "asa245.H" using namespace std; int main ( void ); void test01 ( void ); void test02 ( void ); //****************************************************************************80 int main ( void ) //****************************************************************************80 // // Purpose: // // MAIN is the main program for ASA245_PRB. // // Discussion: // // ASA245_PRB calls the ASA245 routines. // // Modified: // // 15 January 2008 // // Author: // // John Burkardt // { timestamp ( ); cout << "\n"; cout << "ASA245_PRB:\n"; cout << " C++ version\n"; cout << "\n"; cout << " Test routines in the ASA245 library.\n"; test01 ( ); test02 ( ); cout << "\n"; cout << "ASA245_PRB:\n"; cout << " Normal end of execution.\n"; cout << "\n"; timestamp ( ); return 0; } //****************************************************************************80 void test01 ( void ) //****************************************************************************80 // // Purpose: // // TEST01 demonstrates the use of ALNGAM. // // Modified: // // 15 January 2008 // // Author: // // John Burkardt // { double fx; double fx2; int ifault; int n_data; double x; cout << "\n"; cout << "TEST01:\n"; cout << " ALNGAM computes the logarithm of the \n"; cout << " Gamma function. We compare the result\n"; cout << " to tabulated values.\n"; cout << "\n"; cout << " X " << "FX FX2\n"; cout << " " << "(Tabulated) (ALNGAM) DIFF\n"; cout << "\n"; n_data = 0; for ( ; ; ) { gamma_log_values ( &n_data, &x, &fx ); if ( n_data == 0 ) { break; } fx2 = alngam ( x, &ifault ); cout << " " << setprecision(16) << setw(24) << x << " " << setprecision(16) << setw(24) << fx << " " << setprecision(16) << setw(24) << fx2 << " " << setprecision(4) << setw(10) << fabs ( fx - fx2 ) << "\n"; } return; } //****************************************************************************80 void test02 ( void ) //****************************************************************************80 // // Purpose: // // TEST02 demonstrates the use of LNGAMMA. // // Modified: // // 15 January 2008 // // Author: // // John Burkardt // { double fx; double fx2; int ier; int n_data; double x; cout << "\n"; cout << "TEST02:\n"; cout << " LNGAMMA computes the logarithm of the \n"; cout << " Gamma function. We compare the result\n"; cout << " to tabulated values.\n"; cout << "\n"; cout << " X " << "FX FX2\n"; cout << " " << "(Tabulated) (LNGAMMA) DIFF\n"; cout << "\n"; n_data = 0; for ( ; ; ) { gamma_log_values ( &n_data, &x, &fx ); if ( n_data == 0 ) { break; } fx2 = lngamma ( x, &ier ); cout << " " << setprecision(16) << setw(24) << x << " " << setprecision(16) << setw(24) << fx << " " << setprecision(16) << setw(24) << fx2 << " " << setprecision(4) << setw(10) << fabs ( fx - fx2 ) << "\n"; } return; }