Double Exponential Integrator Constructor
Definition
Namespace: Numerics.NET.Calculus
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Double | Constructs a new NumericalIntegrator object. |
Double | Constructs a new NumericalIntegrator object. |
DoubleExponentialIntegrator
Constructs a new NumericalIntegrator object.
public DoubleExponentialIntegrator()
DoubleExponentialIntegrator(Func<Double, Double>, Double, Double)
Constructs a new NumericalIntegrator object.
public DoubleExponentialIntegrator(
Func<double, double> integrand,
double lowerBound,
double upperBound
)
Parameters
- integrand Func<Double, Double>
- A delegate that represents a function of one variable that specifies the function to integrate.
- lowerBound Double
- The lower limit of the integration interval.
- upperBound Double
- The upper limit of the integration interval.
Return Value
An approximation of the definite integral of integrand from lowerBound to upperBound.Remarks
This method performs the actual numerical integration. After this method returns, inspect the Status property to verify that the algorithm terminated normally.