TensorPrimitives.HammingBitDistance<T> Método

Definição

Calcula a distância de Hamming bit a bit entre dois tensores de comprimento 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>

O primeiro tensor, representado como um intervalo.

y
ReadOnlySpan<T>

O segundo tensor, representado como um intervalo.

Retornos

O número de bits que diferem entre os dois intervalos.

Exceções

x e y não devem estar vazios.

Aplica-se a