You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="invervalBeginA">Where the interval starts for the first (inside) integral, exclusive and finite.</param>
71
71
/// <param name="invervalEndA">Where the interval ends for the first (inside) integral, exclusive and finite.</param>
72
72
/// <param name="invervalBeginB">Where the interval starts for the second (outside) integral, exclusive and finite.</param>
73
-
/// /// <param name="invervalEndB">Where the interval ends for the second (outside) integral, exclusive and finite.</param>
73
+
/// <param name="invervalEndB">Where the interval ends for the second (outside) integral, exclusive and finite.</param>
74
74
/// <param name="order">Defines an Nth order Gauss-Legendre rule. The order also defines the number of abscissas and weights for the rule. Precomputed Gauss-Legendre abscissas/weights for orders 2-20, 32, 64, 96, 100, 128, 256, 512, 1024 are used, otherwise they're calculated on the fly.</param>
75
75
/// <returns>Approximation of the finite integral in the given interval.</returns>
/// Approximates a 3-dimensional definite integral using an Nth order Gauss-Legendre rule over the cuboid or rectangular prism [a1,a2] x [b1,b2] x [c1,c2].
97
+
/// </summary>
98
+
/// <param name="f">The 3-dimensional analytic smooth function to integrate.</param>
99
+
/// <param name="invervalBeginA">Where the interval starts for the first integral, exclusive and finite.</param>
100
+
/// <param name="invervalEndA">Where the interval ends for the first integral, exclusive and finite.</param>
101
+
/// <param name="invervalBeginB">Where the interval starts for the second integral, exclusive and finite.</param>
102
+
/// <param name="invervalEndB">Where the interval ends for the second integral, exclusive and finite.</param>
103
+
/// <param name="invervalBeginC">Where the interval starts for the third integral, exclusive and finite.</param>
104
+
/// <param name="invervalEndC">Where the interval ends for the third integral, exclusive and finite.</param>
105
+
/// <param name="order">Defines an Nth order Gauss-Legendre rule. The order also defines the number of abscissas and weights for the rule. Precomputed Gauss-Legendre abscissas/weights for orders 2-20, 32, 64, 96, 100, 128, 256, 512, 1024 are used, otherwise they're calculated on the fly.</param>
106
+
/// <returns>Approximation of the finite integral in the given interval.</returns>
/// Approximation of the definite integral of an analytic smooth function by double-exponential quadrature. When either or both limits are infinite, the integrand is assumed rapidly decayed to zero as x -> infinity.
/// <param name="invervalBeginA">Where the interval starts for the first (inside) integral, exclusive and finite.</param>
193
193
/// <param name="invervalEndA">Where the interval ends for the first (inside) integral, exclusive and finite.</param>
194
194
/// <param name="invervalBeginB">Where the interval starts for the second (outside) integral, exclusive and finite.</param>
195
-
/// /// <param name="invervalEndB">Where the interval ends for the second (outside) integral, exclusive and finite.</param>
195
+
/// <param name="invervalEndB">Where the interval ends for the second (outside) integral, exclusive and finite.</param>
196
196
/// <param name="order">Defines an Nth order Gauss-Legendre rule. The order also defines the number of abscissas and weights for the rule. Precomputed Gauss-Legendre abscissas/weights for orders 2-20, 32, 64, 96, 100, 128, 256, 512, 1024 are used, otherwise they're calculated on the fly.</param>
197
197
/// <returns>Approximation of the finite integral in the given interval.</returns>
/// Approximates a 3-dimensional definite integral using an Nth order Gauss-Legendre rule over the cuboid [a1,a2] x [b1,b2] x [c1,c2].
264
+
/// </summary>
265
+
/// <param name="f">The 3-dimensional analytic smooth function to integrate.</param>
266
+
/// <param name="invervalBeginA">Where the interval starts for the first integral, exclusive and finite.</param>
267
+
/// <param name="invervalEndA">Where the interval ends for the first integral, exclusive and finite.</param>
268
+
/// <param name="invervalBeginB">Where the interval starts for the second integral, exclusive and finite.</param>
269
+
/// <param name="invervalEndB">Where the interval ends for the second integral, exclusive and finite.</param>
270
+
/// <param name="invervalBeginC">Where the interval starts for the third integral, exclusive and finite.</param>
271
+
/// <param name="invervalEndC">Where the interval ends for the third integral, exclusive and finite.</param>
272
+
/// <param name="order">Defines an Nth order Gauss-Legendre rule. The order also defines the number of abscissas and weights for the rule. Precomputed Gauss-Legendre abscissas/weights for orders 2-20, 32, 64, 96, 100, 128, 256, 512, 1024 are used, otherwise they're calculated on the fly.</param>
273
+
/// <returns>Approximation of the finite integral in the given intervals.</returns>
0 commit comments