NumericalIntegration Type

Definite integral approximation

Constructors

Constructor Description

NumericalIntegration()

Full Usage: NumericalIntegration()

Returns: NumericalIntegration
Returns: NumericalIntegration

Static members

Static member Description

NumericalIntegration.definiteIntegral method

Full Usage: NumericalIntegration.definiteIntegral method

Parameters:
Returns: (float * float)[] -> float

returns a function that approximates the AUC of the observations ((x,y) data) with the given numerical integration method

method : NumericalIntegrationMethod
Returns: (float * float)[] -> float

NumericalIntegration.definiteIntegral (method, intervalStart, intervalEnd, partitions, ?Parallel)

Full Usage: NumericalIntegration.definiteIntegral (method, intervalStart, intervalEnd, partitions, ?Parallel)

Parameters:
Returns: (float -> float) -> float

Returns a function that approximates the definite integral of the input function (float -> float) with the given `method` for partitions of equal size `partitions` in an inclusive closed interval [`intervalStart`, `intervalEnd`]

method : NumericalIntegrationMethod
intervalStart : float
intervalEnd : float
partitions : int
?Parallel : bool
Returns: (float -> float) -> float