forked from johannesgerer/jburkardt-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nintlib.html
247 lines (213 loc) · 6.18 KB
/
nintlib.html
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<html>
<head>
<title>
NINTLIB - Multi-dimensional quadrature
</title>
</head>
<body bgcolor="#EEEEEE" link="#CC0000" alink="#FF3300" vlink="#000055">
<h1 align = "center">
NINTLIB <br> Multi-dimensional quadrature
</h1>
<hr>
<p>
<b>NINTLIB</b>
is a C++ library which
estimates integrals over multi-dimensional
regions.
</p>
<p>
Please note that these routines are simple and academic. A good
program for computing an integral in multiple dimensions must
include error estimation and adaptivity. Simple straightforward
approaches to reducing the error will cause a ruinous explosion
in the number of function evaluations required.
</p>
<h3 align = "center">
Licensing:
</h3>
<p>
The computer code and data files described and made available on this web page
are distributed under
<a href = "../../txt/gnu_lgpl.txt">the GNU LGPL license.</a>
</p>
<h3 align = "center">
Languages:
</h3>
<p>
<b>NINTLIB</b> is available in
<a href = "../../c_src/nintlib/nintlib.html">a C version</a> and
<a href = "../../cpp_src/nintlib/nintlib.html">a C++ version</a> and
<a href = "../../f77_src/nintlib/nintlib.html">a FORTRAN77 version</a> and
<a href = "../../f_src/nintlib/nintlib.html">a FORTRAN90 version</a> and
<a href = "../../m_src/nintlib/nintlib.html">a MATLAB version</a>.
</p>
<h3 align = "center">
Related Data and Programs:
</h3>
<p>
<a href = "../../cpp_src/fekete/fekete.html">
FEKETE</a>,
a C++ library which
defines a Fekete rule for quadrature or interpolation over a triangle.
</p>
<p>
<a href = "../../f_src/integral_test/integral_test.html">
INTEGRAL_TEST</a>,
a FORTRAN90 program which
tests the suitability of
a set of N points for use in an equal-weight quadrature rule over
the multi-dimensional unit hypercube.
</p>
<p>
<a href = "../../f_src/intlib/intlib.html">
INTLIB</a>,
a FORTRAN90 library which
estimates
the integral of a function over a one-dimensional interval.
</p>
<p>
<a href = "../../cpp_src/nint_exactness/nint_exactness.html">
NINT_EXACTNESS</a>,
a C++ program which
demonstrates how to measure the
polynomial exactness of a multidimensional quadrature rule.
</p>
<p>
<a href = "../../cpp_src/product_rule/product_rule.html">
PRODUCT_RULE</a>,
a C++ program which
can create a multidimensional quadrature rule as a product of
one dimensional rules.
</p>
<p>
<a href = "../../cpp_src/quadrule/quadrule.html">
QUADRULE</a>,
a C++ library which
defines a variety of
(mostly 1-dimensional) quadrature rules.
</p>
<p>
<a href = "../../cpp_src/stroud/stroud.html">
STROUD</a>,
a C++ library which
defines a variety of
quadrature rules over various "interesting" geometric shapes.
</p>
<p>
<a href = "../../cpp_src/test_int_2d/test_int_2d.html">
TEST_INT_2D</a>,
a C++ library which
defines test integrands for 2D quadrature rules.
</p>
<p>
<a href = "../../cpp_src/test_nint/test_nint.html">
TEST_NINT</a>,
a C++ library which
tests multi-dimensional quadrature routines.
</p>
<h3 align = "center">
Reference:
</h3>
<p>
<ol>
<li>
Philip Davis, Philip Rabinowitz,<br>
Methods of Numerical Integration,<br>
Second Edition,<br>
Dover, 2007,<br>
ISBN: 0486453391,<br>
LC: QA299.3.D28.
</li>
</ol>
</p>
<h3 align = "center">
Source Code:
</h3>
<p>
<ul>
<li>
<a href = "nintlib.cpp">nintlib.cpp</a>, the source code.
</li>
<li>
<a href = "nintlib.hpp">nintlib.hpp</a>, the include file.
</li>
<li>
<a href = "nintlib.sh">nintlib.sh</a>, commands to
compile the source code.
</li>
</ul>
</p>
<h3 align = "center">
Examples and Tests:
</h3>
<p>
<ul>
<li>
<a href = "nintlib_prb.cpp">nintlib_prb.cpp</a>, a sample problem.
</li>
<li>
<a href = "nintlib_prb.sh">nintlib_prb.sh</a>, commands to
compile, link and run the sample problem.
</li>
<li>
<a href = "nintlib_prb_output.txt">nintlib_prb_output.txt</a>, sample problem output.
</li>
</ul>
</p>
<h3 align = "center">
List of Routines:
</h3>
<p>
<ul>
<li>
<b>BOX_ND</b> estimates a multidimensional integral using a product rule.
</li>
<li>
<b>I4_HUGE</b> returns a "huge" I4.
</li>
<li>
<b>I4_POWER</b> returns the value of I^J.
</li>
<li>
<b>MONTE_CARLO_ND</b> estimates a multidimensional integral using Monte Carlo.
</li>
<li>
<b>P5_ND</b> estimates a multidimensional integral with a formula of exactness 5.
</li>
<li>
<b>R8_ABS</b> returns the absolute value of an R8.
</li>
<li>
<b>R8_EPSILON</b> returns the R8 roundoff unit.
</li>
<li>
<b>R8VEC_UNIFORM_01</b> returns a unit pseudorandom R8VEC.
</li>
<li>
<b>ROMBERG_ND</b> estimates a multidimensional integral using Romberg integration.
</li>
<li>
<b>SAMPLE_ND</b> estimates a multidimensional integral using sampling.
</li>
<li>
<b>SUM2_ND</b> estimates a multidimensional integral using a product rule.
</li>
<li>
<b>TIMESTAMP</b> prints the current YMDHMS date as a time stamp.
</li>
<li>
<b>TUPLE_NEXT</b> computes the next element of a tuple space.
</li>
</ul>
</p>
<p>
You can go up one level to <a href = "../cpp_src.html">
the C++ source codes</a>.
</p>
<hr>
<i>
Last revised on 01 March 2007.
</i>
<!-- John Burkardt -->
</body>
</html>