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.DataAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public double GetLinearlyInterpolatedValueAt(
double fractionalIndex
)
Parameters
- fractionalIndex Double
- The fractional index.
Return Value
DoubleLinearly interpolated value between the values at Floor(fractionalIndex) and Ceiling(fractionalIndex).
See Also