Click or drag to resize
Accord.NET (logo)

RombergMethod Constructor (Int32, FuncDouble, Double)

Constructs a new Romberg's integration method.

Namespace:  Accord.Math.Integration
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public RombergMethod(
	int steps,
	Func<double, double> function
)
Request Example View Source

Parameters

steps
Type: SystemInt32
The number of steps used in Romberg's method. Default is 6.
function
Type: SystemFuncDouble, Double
The unidimensional function whose integral should be computed.
See Also