Click or drag to resize

RationalCubicSplineGetYOfX Method

Returns the y value in dependence of a given x value.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public double GetYOfX(
	double u
)

Parameters

u  Double

[Missing <param name="u"/> documentation for "M:Altaxo.Calc.Interpolation.RationalCubicSpline.GetYOfX(System.Double)"]

Return Value

Double
The y value at the given x value.

Implements

IInterpolationFunctionGetYOfX(Double)
Remarks
Implementations are expected to have been initialized by calling Interpolate(IReadOnlyListDouble, IReadOnlyListDouble) before use.
See Also