Click or drag to resize

TransformedInterpolationInterpolate(FuncDouble, Double, FuncDouble, Double, IEnumerableDouble, IEnumerableDouble) Method

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

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

Parameters

transform  FuncDouble, Double

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

transformInverse  FuncDouble, Double

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

x  IEnumerableDouble

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

y  IEnumerableDouble

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

Return Value

TransformedInterpolation

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

See Also