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.1.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>
 
yAxis  IReadOnlyList<Double>
 
zAxis  IReadOnlyList<Double>
 
values  Tensor<Double>
 
extrapolation  ExtrapolationMode  (Optional)
 

Return Value

GridSurface

See Also