Integrates a function using the 31-point Gauss-Kronrod rule.
Namespace: Altaxo.Calc.IntegrationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic 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