|
InverseDistanceWeightingFunctionDefaultDistanceFunction Method
|
Calculates the distance between two points.
Namespace: GSF.NumericalAnalysis.InterpolationAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.246-beta+ff392465a0262ee2737937d4127fc3c2f08c6dcd
Syntaxpublic static double DefaultDistanceFunction(
double x1,
double y1,
double x2,
double y2
)
Public Shared Function DefaultDistanceFunction (
x1 As Double,
y1 As Double,
x2 As Double,
y2 As Double
) As Double
public:
static double DefaultDistanceFunction(
double x1,
double y1,
double x2,
double y2
)
static member DefaultDistanceFunction :
x1 : float *
y1 : float *
x2 : float *
y2 : float -> float
GSF.NumericalAnalysis.Interpolation.InverseDistanceWeightingFunction.DefaultDistanceFunction = function(x1, y1, x2, y2);
View SourceParameters
- x1 Double
- The x-coordinate of the first point.
- y1 Double
- The y-coordinate of the first point.
- x2 Double
- The x-coordinate of the second point.
- y2 Double
- The y-coordinate of the second point.
Return Value
Double
See Also