TensorPrimitives.Exp10M1<T> メソッド

定義

10 を指定したテンソルの累乗数から 1 を引いた数値に引いた要素ごとの結果を計算します。

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

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

スパンとして表されるテンソル。

destination
Span<T>

スパンとして表される宛先テンソル。

例外

xdestination は重複するメモリの場所を参照し、同じ場所から開始しないでください。

注釈

このメソッドは、destination[i] = T.Exp10M1(x[i])を効果的に計算します。

このメソッドは、基になる C ランタイムを呼び出すか、現在のアーキテクチャに固有の命令を使用できます。 正確な結果は、オペレーティング システムやアーキテクチャによって異なる場合があります。

適用対象