BivariateAkimaSpline(IReadOnlyListDouble, IReadOnlyListDouble, IROMatrixDouble, Boolean) Constructor |
Constructs an Akima bivariate interpolator.
Namespace: Altaxo.Calc.InterpolationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic BivariateAkimaSpline(
IReadOnlyList<double> x,
IReadOnlyList<double> y,
IROMatrix<double> z,
bool precomputePatches
)
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.
See Also