Click or drag to resize

BivariateAkimaSpline(IReadOnlyListDouble, IReadOnlyListDouble, IROMatrixDouble) 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
)

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).
See Also