Click or drag to resize

TransformedInterpolationInterpolateSorted Method

Create a linear spline interpolation from a set of (x,y) value pairs, sorted ascendingly by x.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static TransformedInterpolation InterpolateSorted(
	Func<double, double> transform,
	Func<double, double> transformInverse,
	double[] x,
	double[] y
)

Parameters

transform  FuncDouble, Double

[Missing <param name="transform"/> documentation for "M:Altaxo.Calc.Interpolation.TransformedInterpolation.InterpolateSorted(System.Func{System.Double,System.Double},System.Func{System.Double,System.Double},System.Double[],System.Double[])"]

transformInverse  FuncDouble, Double

[Missing <param name="transformInverse"/> documentation for "M:Altaxo.Calc.Interpolation.TransformedInterpolation.InterpolateSorted(System.Func{System.Double,System.Double},System.Func{System.Double,System.Double},System.Double[],System.Double[])"]

x  Double

[Missing <param name="x"/> documentation for "M:Altaxo.Calc.Interpolation.TransformedInterpolation.InterpolateSorted(System.Func{System.Double,System.Double},System.Func{System.Double,System.Double},System.Double[],System.Double[])"]

y  Double

[Missing <param name="y"/> documentation for "M:Altaxo.Calc.Interpolation.TransformedInterpolation.InterpolateSorted(System.Func{System.Double,System.Double},System.Func{System.Double,System.Double},System.Double[],System.Double[])"]

Return Value

TransformedInterpolation

[Missing <returns> documentation for "M:Altaxo.Calc.Interpolation.TransformedInterpolation.InterpolateSorted(System.Func{System.Double,System.Double},System.Func{System.Double,System.Double},System.Double[],System.Double[])"]

See Also