NewtonCotesTrapeziumRuleContourIntegrateAdaptive Method |
Adaptive approximation of the definite integral in the provided interval 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 ContourIntegrateAdaptive(
Func<double, Complex> f,
double intervalBegin,
double intervalEnd,
double targetError
)
Parameters
- f FuncDouble, Complex
- The analytic smooth complex function to integrate, define don real domain.
- intervalBegin Double
- Where the interval starts, inclusive and finite.
- intervalEnd Double
- Where the interval stops, inclusive and finite.
- targetError Double
- The expected accuracy of the approximation.
Return Value
ComplexApproximation of the finite integral in the given interval.
See Also