Click or drag to resize

LogLinearInterpolate(IEnumerableDouble, IEnumerableDouble) Method

Create a piecewise log-linear interpolation from an unsorted set of (x,y) value pairs.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static LogLinear Interpolate(
	IEnumerable<double> x,
	IEnumerable<double> y
)

Parameters

x  IEnumerableDouble
The sample points.
y  IEnumerableDouble
The sample values corresponding to x.

Return Value

LogLinear
The log-linear interpolator.
See Also