|
TrapezoidalRule Constructor (FuncDouble, Double, Double, Double)
|
Namespace:
Accord.Math.Integration
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public TrapezoidalRule(
Func<double, double> function,
double a,
double b
)
Public Sub New (
function As Func(Of Double, Double),
a As Double,
b As Double
)
Request Example
View SourceParameters
- function
- Type: SystemFuncDouble, Double
The unidimensional function whose integral should be computed. - a
- Type: SystemDouble
The beginning of the integration interval. - b
- Type: SystemDouble
The ending of the integration interval.
See Also