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.InterpolationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic 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
- Matrix whose rows map to the x coordinates and whose columns map to the y coordinates.
See Also