InterpolationTensorExtensions.<G>$D3B2B89EB1B59CFA4DEDBCAC13AAE466.GridCubicInterpolator Method

Creates a grid-based cubic interpolator over a 3D rectilinear grid.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 10.3.0
C#
public static GridSurface GridCubicInterpolator(
	IReadOnlyList<double> xAxis,
	IReadOnlyList<double> yAxis,
	IReadOnlyList<double> zAxis,
	Tensor<double> values,
	ExtrapolationMode extrapolation = ExtrapolationMode.Throw
)

Parameters

xAxis  IReadOnlyList<Double>
The x-coordinates of the grid points.
yAxis  IReadOnlyList<Double>
The y-coordinates of the grid points.
zAxis  IReadOnlyList<Double>
The z-coordinates of the grid points.
values  Tensor<Double>
A rank-3 tensor of grid values.
extrapolation  ExtrapolationMode  (Optional)
The extrapolation mode for out-of-range coordinates.

Return Value

GridSurface

See Also