Click or drag to resize

PronySeriesInterpolationBaseGetWorkingXMinMaxNumberOfPoints Method

Determines the working x-range and number of points based on either user-specified bounds or the data.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
protected (double workingXMinimum, double workingXMaximum, int workingNumberOfPoints) GetWorkingXMinMaxNumberOfPoints(
	IReadOnlyList<double> xvec
)

Parameters

xvec  IReadOnlyListDouble
Original x data used to infer the working range when automatic detection is active.

Return Value

ValueTupleDouble, Double, Int32
The effective x-minimum, x-maximum, and number of points to be used.
Exceptions
ExceptionCondition
InvalidOperationExceptionThrown when manually provided bounds are invalid.
ArgumentExceptionThrown when automatic detection cannot find positive x-values.
See Also