|
DistanceBitwiseHamming Method
|
Note: This API is now obsolete.
Gets the Bitwise Hamming distance between two points.
Please use the
Distance.Hamming
method or the
Hamming class instead.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax [ObsoleteAttribute("Please use Distance.Hamming instead.")]
public static double BitwiseHamming(
byte[] x,
byte[] y
)
<ObsoleteAttribute("Please use Distance.Hamming instead.")>
Public Shared Function BitwiseHamming (
x As Byte(),
y As Byte()
) As Double
Request Example
View SourceParameters
- x
- Type: SystemByte
- y
- Type: SystemByte
Return Value
Type:
DoubleSee Also