Calculates the Minkowski Distance Measure between two data points

Namespace:  Hyleos.Mathematic
Assembly:  Hyleos.Mathematic (in Hyleos.Mathematic.dll) Version: 1.0.1.1 (1.0.1.1)

Syntax

C#
public static double ChebyshevDistance(
	double[] X,
	double[] Y
)
Visual Basic (Declaration)
Public Shared Function ChebyshevDistance ( _
	X As Double(), _
	Y As Double() _
) As Double
Visual C++
public:
static double ChebyshevDistance(
	array<double>^ X, 
	array<double>^ Y
)

Parameters

X
Type: array< System..::.Double >[]()[]
An array with the values of an object or datapoint
Y
Type: array< System..::.Double >[]()[]
An array with the values of an object or datapoint

Return Value

Returns the Minkowski Distance Measure Between Points terms and Points points

See Also