Comparteix a través de


TensorPrimitives.HammingBitDistance<T> Método

Definición

Calcula la distancia de hamming bit a bit entre dos tensores de longitud igual de valores.

public:
generic <typename T>
 where T : System::Numerics::IBinaryInteger<T> static long HammingBitDistance(ReadOnlySpan<T> x, ReadOnlySpan<T> y);
public static long HammingBitDistance<T> (ReadOnlySpan<T> x, ReadOnlySpan<T> y) where T : System.Numerics.IBinaryInteger<T>;
static member HammingBitDistance : ReadOnlySpan<'T (requires 'T :> System.Numerics.IBinaryInteger<'T>)> * ReadOnlySpan<'T (requires 'T :> System.Numerics.IBinaryInteger<'T>)> -> int64 (requires 'T :> System.Numerics.IBinaryInteger<'T>)
Public Shared Function HammingBitDistance(Of T As IBinaryInteger(Of T)) (x As ReadOnlySpan(Of T), y As ReadOnlySpan(Of T)) As Long

Parámetros de tipo

T

Parámetros

x
ReadOnlySpan<T>

El primer tensor, representado como un intervalo.

y
ReadOnlySpan<T>

El segundo tensor, representado como un intervalo.

Devoluciones

Número de bits que difieren entre los dos intervalos.

Excepciones

x y y no deben estar vacíos.

Se aplica a