Definite integral approximation
Constructor | Description |
|
|
Static member | Description |
Full Usage:
NumericalIntegration.definiteIntegral method
Parameters:
NumericalIntegrationMethod
Returns: (float * float)[] -> float
|
returns a function that approximates the AUC of the observations ((x,y) data) with the given numerical integration method
|
Full Usage:
NumericalIntegration.definiteIntegral (method, intervalStart, intervalEnd, partitions, ?Parallel)
Parameters:
NumericalIntegrationMethod
intervalStart : float
intervalEnd : float
partitions : int
?Parallel : bool
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`]
|