Click or drag to resize

DoubleColumnGetLinearlyInterpolatedValueAt Method

Counterpart to FractionalIndexOf(Double). Gets a linearly interpolated value at a given fractional index. If the given index is < 0, the value at index 0 is returned; if the index is >=Count-1, the value at index Count-1 is returned.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public double GetLinearlyInterpolatedValueAt(
	double fractionalIndex
)

Parameters

fractionalIndex  Double
The fractional index.

Return Value

Double
Linearly interpolated value between the values at Floor(fractionalIndex) and Ceiling(fractionalIndex).
See Also