Click or drag to resize

BivariateAkimaSpline(IReadOnlyListDouble, IReadOnlyListDouble, IROMatrixDouble, Boolean, Boolean) Constructor

Constructs an Akima bivariate interpolator.

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

Parameters

x  IReadOnlyListDouble
X coordinates of grid points (ascending).
y  IReadOnlyListDouble
Y coordinates of grid points (ascending).
z  IROMatrixDouble
Z values on the (x,y) grid with dimensions (x.Count, y.Count).
precomputePatches  Boolean
If , precomputes the bicubic patch for every interior grid cell.
copyArraysLocally  Boolean
If , creates local copies of the input arrays. If , the input arrays are used directly without copying, so make sure that they don't change during usage of this instance.
See Also