# include # include # include # include # include using namespace std; # include "asa111.hpp" int main ( ); void test01 ( ); void timestamp ( ); //****************************************************************************80 int main ( ) //****************************************************************************80 // // Purpose: // // asa111_test() tests asa111(). // // Licensing: // // This code is distributed under the MIT license. // // Modified: // // 21 January 2008 // // Author: // // John Burkardt // { timestamp ( ); cout << "\n"; cout << "asa111_test():\n"; cout << " C++ version\n"; cout << " Test asa111().\n"; test01 ( ); // // Terminate. // cout << "\n"; cout << "asa111_test():\n"; cout << " Normal end of execution.\n"; cout << "\n"; timestamp ( ); return 0; } //****************************************************************************80 void test01 ( ) //****************************************************************************80 // // Purpose: // // test01() tests ppnd(). // // Licensing: // // This code is distributed under the MIT license. // // Modified: // // 21 January 2008 // // Author: // // John Burkardt // { double fx; int ifault; int n_data; double x; double x2; cout << "\n"; cout << "test01():\n"; cout << " ppnd() computes percentage points of the normal distribution.\n"; cout << " Compare against tabulated values.\n"; cout << "\n"; cout << " CDF X X " << " DIFF\n"; cout << " (tabulated) (PPND)\n"; cout << "\n"; n_data = 0; for ( ; ; ) { normal_01_cdf_values ( &n_data, &x, &fx ); if ( n_data == 0 ) { break; } x2 = ppnd ( fx, &ifault ); cout << " " << setprecision(4) << setw(10) << fx << " " << setprecision(16) << setw(24) << x << " " << setprecision(16) << setw(24) << x2 << " " << setprecision(4) << setw(10) << fabs ( x - x2 ) << "\n"; } return; } //****************************************************************************80 void timestamp ( ) //****************************************************************************80 // // Purpose: // // timestamp() prints the current YMDHMS date as a time stamp. // // Example: // // May 31 2001 09:45:54 AM // // Licensing: // // This code is distributed under the MIT license. // // Modified: // // 24 September 2003 // // Author: // // John Burkardt // { # define TIME_SIZE 40 static char time_buffer[TIME_SIZE]; const struct tm *tm; time_t now; now = time ( NULL ); tm = localtime ( &now ); strftime ( time_buffer, TIME_SIZE, "%d %B %Y %I:%M:%S %p", tm ); cout << time_buffer << "\n"; return; # undef TIME_SIZE }