Click or drag to resize

QK41Integration Method

Integrates a function using the 41-point Gauss-Kronrod rule without creating an instance.

Namespace: Altaxo.Calc.Integration
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static void Integration(
	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