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])を効果的に計算します。

適用対象