gsl_integration_workspaceupdate Method |
Update the workspace by replacing the interval with index
i with two subintervals.
Calls
qpsrt afterwards to maintain ordering of errors.
Namespace: Altaxo.Calc.IntegrationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic void update(
double a1,
double b1,
double area1,
double error1,
double a2,
double b2,
double area2,
double error2
)
Parameters
- a1 Double
- Left endpoint of the first new subinterval.
- b1 Double
- Right endpoint of the first new subinterval.
- area1 Double
- Integral estimate for the first new subinterval.
- error1 Double
- Error estimate for the first new subinterval.
- a2 Double
- Left endpoint of the second new subinterval.
- b2 Double
- Right endpoint of the second new subinterval.
- area2 Double
- Integral estimate for the second new subinterval.
- error2 Double
- Error estimate for the second new subinterval.
See Also