Sdílet prostřednictvím


TensorPrimitives.ILogB<T> Metoda

Definice

Vypočítá celočíselnou logaritmus čísel v zadaném tensoru.

public:
generic <typename T>
 where T : System::Numerics::IFloatingPointIeee754<T> static void ILogB(ReadOnlySpan<T> x, Span<int> destination);
public static void ILogB<T> (ReadOnlySpan<T> x, Span<int> destination) where T : System.Numerics.IFloatingPointIeee754<T>;
static member ILogB : ReadOnlySpan<'T (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)> * Span<int> -> unit (requires 'T :> System.Numerics.IFloatingPointIeee754<'T>)
Public Shared Sub ILogB(Of T As IFloatingPointIeee754(Of T)) (x As ReadOnlySpan(Of T), destination As Span(Of Integer))

Parametry typu

T

Parametry

x
ReadOnlySpan<T>

Tenzor, reprezentovaný jako rozpětí.

destination
Span<Int32>

Cílový tensor, reprezentovaný jako rozpětí.

Výjimky

x a destination odkazují na překrývající se umístění paměti a nezačínají ve stejném umístění.

Poznámky

Tato metoda efektivně vypočítá destination[i] = T.ILogB(x[i]).

Platí pro