Namespace:
Extreme.Mathematics.Calculus
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public AdaptiveIntegrator(
Func<double, double> integrand,
double lowerBound,
double upperBound
)
Public Sub New (
integrand As Func(Of Double, Double),
lowerBound As Double,
upperBound As Double
)
public:
AdaptiveIntegrator(
Func<double, double>^ integrand,
double lowerBound,
double upperBound
)
new :
integrand : Func<float, float> *
lowerBound : float *
upperBound : float -> AdaptiveIntegrator
Parameters
- integrand
- Type: SystemFuncDouble, Double
A delegate that represents a function of one variable
that specifies the function to integrate. - lowerBound
- Type: SystemDouble
The lower limit of the integration
interval. - upperBound
- Type: SystemDouble
The upper limit of the integration
interval.
Reference