ShiftGroupDoubleGetInterpolatedCurvePoints 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.MasterCurvesAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public (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,
IReadOnlyListDoublePair 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.
Implements
IShiftGroupGetInterpolatedCurvePoints(Int32, Int32)See Also