gsl_integration_rule Delegate |
Delegate that represents a quadrature rule used by the integration routines.
Namespace: Altaxo.Calc.IntegrationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic delegate void gsl_integration_rule(
Func<double, double> f,
double a,
double b,
out double result,
out double abserr,
out double defabs,
out double resabs
)
Parameters
- f FuncDouble, Double
- Function to integrate.
- a Double
- Left endpoint of the interval to integrate.
- b Double
- Right endpoint of the interval to integrate.
- result Double
- Integral estimate over [a,b] (output).
- abserr Double
- Estimated absolute error for result (output).
- defabs Double
- Description of absolute error component (output).
- resabs Double
- Absolute result for the rule (output).
See Also