共用方式為


TensorPrimitives.Sinh 方法

定義

多載

Sinh(ReadOnlySpan<Single>, Span<Single>)

計算指定張量中每個單精度浮點弧度角度的元素雙曲正弦值。

Sinh<T>(ReadOnlySpan<T>, Span<T>)

計算指定張量中每個弧度角度的元素雙曲正弦值。

Sinh(ReadOnlySpan<Single>, Span<Single>)

來源:
TensorPrimitives.cs
來源:
TensorPrimitives.Single.cs
來源:
TensorPrimitives.Single.cs

計算指定張量中每個單精度浮點弧度角度的元素雙曲正弦值。

public:
 static void Sinh(ReadOnlySpan<float> x, Span<float> destination);
public static void Sinh (ReadOnlySpan<float> x, Span<float> destination);
static member Sinh : ReadOnlySpan<single> * Span<single> -> unit
Public Shared Sub Sinh (x As ReadOnlySpan(Of Single), destination As Span(Of Single))

參數

x
ReadOnlySpan<Single>

以範圍表示的張量。

destination
Span<Single>

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

例外狀況

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

備註

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

如果值等於 NegativeInfinityPositiveInfinityNaN,則對應的目的地位置會設定為該值。

x 中的角度必須以弧度為單位。 使用 System.Single.DegreesToRadians 或乘以 PI/180 將度轉換成弧度。

這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。

適用於

Sinh<T>(ReadOnlySpan<T>, Span<T>)

來源:
TensorPrimitives.Sinh.cs
來源:
TensorPrimitives.Sinh.cs

計算指定張量中每個弧度角度的元素雙曲正弦值。

public:
generic <typename T>
 where T : System::Numerics::IHyperbolicFunctions<T> static void Sinh(ReadOnlySpan<T> x, Span<T> destination);
public static void Sinh<T> (ReadOnlySpan<T> x, Span<T> destination) where T : System.Numerics.IHyperbolicFunctions<T>;
static member Sinh : 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 Sinh(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.Sinh(x[i])

如果值等於 NegativeInfinityPositiveInfinityNaN,則對應的目的地位置會設定為該值。

x 中的角度必須以弧度為單位。 使用 System.Single.DegreesToRadians 或乘以 T。Pi / 180 將度轉換成弧度。

這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。

適用於