Click or drag to resize

IShiftGroupGetInterpolatedCurvePoints Method

Gets interpolated curve points between the minimum x-value and the maximum x-value. Before calling this function, the interpolation has to be initialized, curves must be added to the interpolation, and then Interpolate must be called.

Namespace: Altaxo.Science.Thermorheology.MasterCurves
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
(IReadOnlyList<double> X, IReadOnlyList<double> Y) GetInterpolatedCurvePoints(
	int idxValueComponent,
	int numberOfInterpolationPoints = 1001
)

Parameters

idxValueComponent  Int32
The index of the value component, see NumberOfValueComponents.
numberOfInterpolationPoints  Int32  (Optional)
Number of points used for the interpolation. The default value is 1001.

Return Value

ValueTupleIReadOnlyListDouble, IReadOnlyListDouble
Pair of x and y arrays (of same length) representing the interpolated curve points. For complexed valued y, if idxValueComponent is 0, the real part is returned as y, for idxValueComponent==1 the imaginary part is returned.
See Also