Click or drag to resize

BivariateAkimaSpline Constructor

Constructs an Akima bivariate spline.

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

Parameters

x  IReadOnlyListDouble
ARRAY OF DIMENSION LX STORING THE X COORDINATES OF INPUT GRID POINTS (IN ASCENDING ORDER)
y  IReadOnlyListDouble
ARRAY OF DIMENSION LY STORING THE Y COORDINATES OF INPUT GRID POINTS (IN ASCENDING ORDER)
z  IROMatrixDouble
DOUBLY-DIMENSIONED ARRAY OF DIMENSION (LX,LY) STORING THE VALUES OF THE FUNCTION (Z VALUES) AT INPUT GRID POINTS
copyDataLocally  Boolean
If true, the data where cloned before stored here in this instance. If false, the data are stored directly. Make sure then, that the data are not changed outside.
See Also