# include # include # include # include # include "asa109.h" int main ( ); void test01 ( ); void test02 ( ); void timestamp ( ); /******************************************************************************/ int main ( ) /******************************************************************************/ /* Purpose: asa109_test() tests asa109(). Licensing: This code is distributed under the MIT license. Modified: 25 September 2014 Author: John Burkardt */ { timestamp ( ); printf ( "\n" ); printf ( "asa109_test():\n" ); printf ( " C version\n" ); printf ( " Test asa109().\n" ); test01 ( ); test02 ( ); /* Terminate. */ printf ( "\n" ); printf ( "asa109_test():\n" ); printf ( " Normal end of execution.\n" ); printf ( "\n" ); timestamp ( ); return 0; } /******************************************************************************/ void test01 ( ) /******************************************************************************/ /* Purpose: test01() tests xinbta(). Licensing: This code is distributed under the MIT license. Modified: 28 April 2013 Author: John Burkardt */ { double a; double b; double beta_log; double fx; int ifault; int n_data; double x; double x2; printf ( "\n" ); printf ( "test01():\n" ); printf ( " xinbta() inverts the incomplete Beta function.\n" ); printf ( " Given CDF, it computes an X.\n" ); printf ( "\n" ); printf ( " A B CDF " ); printf ( " X X\n" ); printf ( " " ); printf ( " (Tabulated) (XINBTA) DIFF\n" ); printf ( "\n" ); n_data = 0; for ( ; ; ) { beta_inc_values ( &n_data, &a, &b, &x, &fx ); if ( n_data == 0 ) { break; } beta_log = lgamma ( a ) + lgamma ( b ) - lgamma ( a + b ); x2 = xinbta ( a, b, beta_log, fx, &ifault ); printf ( " %10.4f %10.4f %10.4f %24.16g %24.16g %10.4e\n", a, b, fx, x, x2, fabs ( x - x2 ) ); } return; } /******************************************************************************/ void test02 ( ) /******************************************************************************/ /* Purpose: test02() tests beta_inc_values(). Licensing: This code is distributed under the MIT license. Modified: 25 September 2014 Author: John Burkardt */ { double a; double b; double beta_log; double e; double fx; double fx2; int ifault; int n_data; double x; printf ( "\n" ); printf ( "test02():\n" ); printf ( " beta_inc_values() stores values of\n" ); printf ( " the incomplete Beta function.\n" ); printf ( "\n" ); printf ( " A B X BETA_INC(A,B)(X)\n" ); printf ( "\n" ); n_data = 0; for ( ; ; ) { beta_inc_values ( &n_data, &a, &b, &x, &fx ); if ( n_data == 0 ) { break; } beta_log = lgamma ( a ) + lgamma ( b ) - lgamma ( a + b ); fx2 = betain ( x, a, b, beta_log, &ifault ); e = fabs ( fx - fx2 ); printf ( " %12f %12f %12f %24.16g %24.16g %8.4e\n", a, b, x, fx, fx2, e ); } return; } /******************************************************************************/ void timestamp ( ) /******************************************************************************/ /* Purpose: timestamp() prints the current YMDHMS date as a time stamp. Example: 17 June 2014 09:45:54 AM Licensing: This code is distributed under the MIT license. Modified: 17 June 2014 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 ); printf ( "%s\n", time_buffer ); return; # undef TIME_SIZE }