Click or drag to resize

TransformedInterpolationInterpolateInplace Method

Create a linear spline interpolation from an unsorted set of (x,y) value pairs. WARNING: Works in-place and can thus causes the data array to be reordered and modified.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static TransformedInterpolation InterpolateInplace(
	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.InterpolateInplace(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.InterpolateInplace(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.InterpolateInplace(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.InterpolateInplace(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.InterpolateInplace(System.Func{System.Double,System.Double},System.Func{System.Double,System.Double},System.Double[],System.Double[])"]

See Also