Specifies the type of distance method.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public enum Method
Visual Basic (Declaration)
Public Enumeration Method
Visual C++
public enum class Method

Members

Member nameDescription
L2Norm
Indicates the Euclidean distance method (L_2 norm).
L1Norm
Indicates the sum of the absolute differences (L_1 norm) distance method.
InfinityNorm
Indicates the maximum difference (L_\infty norm) distance method.
Mahalanobis
Indicates the Mahalanobis distance method.
AbsCosine
Indicates the absolute value of the cosine of the angle between the vectors distance method.
AngleInRadians
Indicates the angle in radians (0, \pi) between the lines through the origin defined by the vectors distance method.
CorrelationCoefficient
Indicates the correlation coefficient distance method.
AbsCorrelationCoefficient
Indicates the absolute value of the correlation coefficient distance method.
ExactMatches
Indicates the number of exact matches distance method.

See Also