共用方式為


TensorPrimitives.ILogB<T> 方法

定義

計算指定張量中數位的專案整數對數。

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))

類型參數

T

參數

x
ReadOnlySpan<T>

以範圍表示的張量。

destination
Span<Int32>

目的地張量,以範圍表示。

例外狀況

xdestination 參考重疊的記憶體位置,而且不會從相同的位置開始。

備註

這個方法會有效地計算 destination[i] = T.ILogB(x[i])

適用於