|
RombergMethodIntegrate Method (FuncDouble, Double, Double, Double, Int32)
|
Computes the area under the integral for the given function,
in the given integration interval, using Romberg's method.
Namespace:
Accord.Math.Integration
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static double Integrate(
Func<double, double> func,
double a,
double b,
int steps
)
Public Shared Function Integrate (
func As Func(Of Double, Double),
a As Double,
b As Double,
steps As Integer
) As Double
Request Example
View SourceParameters
- func
- 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. - steps
- Type: SystemInt32
The number of steps used in Romberg's method. Default is 6.
Return Value
Type:
DoubleThe integral's value in the current interval.
See Also