|
DistanceHamming Method (BitArray, BitArray)
|
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(
BitArray x,
BitArray y
)
Public Shared Function Hamming (
x As BitArray,
y As BitArray
) As Double
Request Example
View SourceParameters
- x
- Type: System.CollectionsBitArray
The first point x. - y
- Type: System.CollectionsBitArray
The second point y.
Return Value
Type:
DoubleThe Hamming distance between x and y.
Examples
For examples, please see
Hamming documentation page.
See Also