Condividi tramite


TensorPrimitives.HammingBitDistance<T> Metodo

Definizione

Calcola la distanza hamming bit per bit tra due tensori di lunghezza uguale di valori.

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

Parametri di tipo

T

Parametri

x
ReadOnlySpan<T>

Primo tensore, rappresentato come intervallo.

y
ReadOnlySpan<T>

Secondo tensore, rappresentato come intervallo.

Restituisce

Numero di bit che differiscono tra i due intervalli.

Eccezioni

x e y non devono essere vuoti.

Si applica a