|
DistanceHamming Method (Byte, Byte)
|
Gets the Hamming distance between two points.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static double Hamming(
byte[] x,
byte[] y
)
Public Shared Function Hamming (
x As Byte(),
y As Byte()
) As Double
Request Example
View SourceParameters
- x
- Type: SystemByte
The first point x. - y
- Type: SystemByte
The second point y.
Return Value
Type:
DoubleThe Hamming distance between x and y.
Examples
For examples, please see
Hamming documentation page.
See Also