Click or drag to resize

QK21Integrate Method

Integrates a function using the 21-point Gauss-Kronrod rule.

Namespace: Altaxo.Calc.Integration
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public void Integrate(
	Func<double, double> f,
	double a,
	double b,
	out double result,
	out double abserr,
	out double resabs,
	out double resasc
)

Parameters

f  FuncDouble, Double
The function to integrate.
a  Double
The lower integration bound.
b  Double
The upper integration bound.
result  Double
The computed integral value.
abserr  Double
The estimated absolute error.
resabs  Double
The approximation to the integral of the absolute value.
resasc  Double
The approximation to the integral of the absolute deviation.
See Also