Click or drag to resize

BivariateLinearSpline Constructor

Constructor of a bivariate linear spline. The vectors and the data matrix are not cloned, so make sure that they don't change during usage of this instance.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public BivariateLinearSpline(
	IReadOnlyList<double> x,
	IReadOnlyList<double> y,
	IROMatrix<double> datamatrix
)

Parameters

x  IReadOnlyListDouble
Vector of x values corresponding to the rows of the data matrix. Must be strongly increasing or decreasing.
y  IReadOnlyListDouble
Vector of y values corresponding to the columns of the data matrix. Must be strongly increasing or decreasing.
datamatrix  IROMatrixDouble

[Missing <param name="datamatrix"/> documentation for "M:Altaxo.Calc.Interpolation.BivariateLinearSpline.#ctor(System.Collections.Generic.IReadOnlyList{System.Double},System.Collections.Generic.IReadOnlyList{System.Double},Altaxo.Calc.LinearAlgebra.IROMatrix{System.Double})"]

See Also