NewtonCotesTrapeziumRuleContourIntegrateAdaptiveTransformedOdd Method |
Adaptive approximation of the definite integral by the trapezium rule.
Namespace: Altaxo.Calc.IntegrationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static Complex ContourIntegrateAdaptiveTransformedOdd(
Func<double, Complex> f,
double intervalBegin,
double intervalEnd,
IEnumerable<double[]> levelAbscissas,
IEnumerable<double[]> levelWeights,
double levelOneStep,
double targetRelativeError
)
Parameters
- f FuncDouble, Complex
- The analytic smooth complex function to integrate, defined on the real domain.
- intervalBegin Double
- Where the interval starts, inclusive and finite.
- intervalEnd Double
- Where the interval stops, inclusive and finite.
- levelAbscissas IEnumerableDouble
- Abscissa vector per level provider.
- levelWeights IEnumerableDouble
- Weight vector per level provider.
- levelOneStep Double
- First Level Step
- targetRelativeError Double
- The expected relative accuracy of the approximation.
Return Value
ComplexApproximation of the finite integral in the given interval.
See Also