Click or drag to resize

IDWFunc Delegate

Function definition for the inverse distance weighting algorithm.

Namespace: GSF.NumericalAnalysis.Interpolation
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public delegate double IDWFunc(
	double x,
	double y
)

Parameters

x  Double
The x-coordinate of the point at which the value is to be calculated.
y  Double
The y-coordinate of the point at which the value is to be calculated.

Return Value

Double
The calculated value at the given location.
See Also