-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtoms291_prb.cpp
119 lines (102 loc) · 2.21 KB
/
toms291_prb.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# include <cstdlib>
# include <iostream>
# include <iomanip>
# include <cmath>
# include "toms291.hpp"
using namespace std;
int main ( );
void test01 ( );
//****************************************************************************80
int main ( )
//****************************************************************************80
//
// Purpose:
//
// MAIN is the main program for TOMS291_PRB.
//
// Discussion:
//
// TOMS291_PRB tests the TOMS291 library.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 22 January 2008
//
// Author:
//
// John Burkardt
//
{
timestamp ( );
cout << "\n";
cout << "TOMS291_PRB:\n";
cout << " C++ version\n";
cout << " Test the TOMS291 library.\n";
test01 ( );
//
// Terminate.
//
cout << "\n";
cout << "TOMS291_PRB:\n";
cout << " Normal end of execution.\n";
cout << "\n";
timestamp ( );
return 0;
}
//****************************************************************************80
void test01 ( )
//****************************************************************************80
//
// Purpose:
//
// TEST01 demonstrates the use of ALOGAM.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 22 January 2008
//
// Author:
//
// John Burkardt
//
{
double fx;
double fx2;
int ifault;
int n_data;
double x;
cout << "\n";
cout << "TEST01:\n";
cout << " ALOGAM 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) (ALOGAM) DIFF\n";
cout << "\n";
n_data = 0;
for ( ; ; )
{
gamma_log_values ( &n_data, &x, &fx );
if ( n_data == 0 )
{
break;
}
fx2 = alogam ( x, &ifault );
cout << " " << setprecision(16) << setw(24) << x
<< " " << setprecision(16) << setw(24) << fx
<< " " << setprecision(16) << setw(24) << fx2
<< " " << setprecision(4) << setw(10) << r8_abs ( fx - fx2 ) << "\n";
}
return;
}