TensorPrimitives.Acosh<T>(ReadOnlySpan<T>, Span<T>) メソッド

定義

指定された数値の要素ごとの双曲線アークコサインを計算します。

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

型パラメーター

T

パラメーター

x
ReadOnlySpan<T>

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

destination
Span<T>

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

例外

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

注釈

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

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

適用対象