Click or drag to resize

BurdenFairesAdaptiveQuadratureTryIntegrate Method

Approximates the integral I = Int(f(x), a, b) to within a given tolerance.

Namespace:  AGI.Foundation.NumericalMethods.Advanced
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static bool TryIntegrate(
	double intervalStart,
	double intervalEnd,
	double tolerance,
	int numberOfLevels,
	BurdenFairesAdaptiveQuadratureIntegrand integrand,
	out double integral
)

Parameters

intervalStart
Type: SystemDouble
The start of the interval in which the function is integrated.
intervalEnd
Type: SystemDouble
The end of the interval in which the function is integrated.
tolerance
Type: SystemDouble
The error tolerance used in the adaptive quadrature technique.
numberOfLevels
Type: SystemInt32
The number of divisions.
integrand
Type: AGI.Foundation.NumericalMethods.AdvancedBurdenFairesAdaptiveQuadratureIntegrand
The function to be integrated.
integral
Type: SystemDouble
The value of the integral.

Return Value

Type: Boolean
A boolean value indicating if the integral was successfully computed.
See Also