InterpolationTensorExtensions.GridNearestInterpolator Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 10.3.0

Overload List

GridNearestInterpolator(IReadOnlyList<IReadOnlyList<Double>>, Tensor<Double>, GridBoundaryCondition, ExtrapolationMode)

C#
public static GridSurface GridNearestInterpolator(
	IReadOnlyList<IReadOnlyList<double>> axes,
	Tensor<double> values,
	GridBoundaryCondition boundaryCondition = default,
	ExtrapolationMode extrapolation = ExtrapolationMode.Throw
)

Parameters

axes  IReadOnlyList<IReadOnlyList<Double>>
 
values  Tensor<Double>
 
boundaryCondition  GridBoundaryCondition  (Optional)
 
extrapolation  ExtrapolationMode  (Optional)
 

Return Value

GridSurface

GridNearestInterpolator(IReadOnlyList<Double>, IReadOnlyList<Double>, IReadOnlyList<Double>, Tensor<Double>, ExtrapolationMode)

C#
public static GridSurface GridNearestInterpolator(
	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