Click or drag to resize

InterpolationInformationComplexSeparateXAddXYColumn Method

Adds values to the data that should be interpolated for either the real or the imaginary part, but does not evaluate a new interpolation. The groupNumber selects which internal collection to use (0 = real/base collection, 1 = imaginary collection). Existing points belonging to the specified curve index are removed before adding the new column. The tracked minimum and maximum x values are updated to include the new points.

Namespace: Altaxo.Science.Thermorheology.MasterCurves
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public void AddXYColumn(
	double shift,
	int indexOfCurve,
	IReadOnlyList<double> x,
	IReadOnlyList<double> y,
	int groupNumber,
	ShiftGroupBase options
)

Parameters

shift  Double
Shift value used to modify the x values.
indexOfCurve  Int32
Index of the curve in the group of curves.
x  IReadOnlyListDouble
Column of x values.
y  IReadOnlyListDouble
Column of y values.
groupNumber  Int32
Number of the curve group: 0 for real part (base storage), 1 for imaginary part (separate storage).
options  ShiftGroupBase
Options for creating the master curve (controls logarithmization and shift mode).
See Also