FunctionMathIntegrate Method (FuncDouble, Double, Interval, IntegrationSettings) |
Evaluates a definite integral with the given evaluation settings.
Namespace:
Meta.Numerics.Analysis
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static IntegrationResult Integrate(
Func<double, double> integrand,
Interval range,
IntegrationSettings settings
)
Public Shared Function Integrate (
integrand As Func(Of Double, Double),
range As Interval,
settings As IntegrationSettings
) As IntegrationResult
public:
static IntegrationResult^ Integrate(
Func<double, double>^ integrand,
Interval range,
IntegrationSettings^ settings
)
static member Integrate :
integrand : Func<float, float> *
range : Interval *
settings : IntegrationSettings -> IntegrationResult
Parameters
- integrand
- Type: SystemFuncDouble, Double
The function to be integrated. - range
- Type: Meta.NumericsInterval
The range of integration. - settings
- Type: Meta.Numerics.AnalysisIntegrationSettings
The settings which control the evaluation of the integral.
Return Value
Type:
IntegrationResultThe result of the integral.
Exceptions Remarks See Also