TensorPrimitives.Sinh 方法

定义

重载

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

计算指定张量中每个单精度浮点弧度角的元素双曲正弦值。

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

计算指定张量中每个弧度角的元素双曲正弦值。

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

Source:
TensorPrimitives.cs
Source:
TensorPrimitives.Single.cs
Source:
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>)

Source:
TensorPrimitives.Sinh.cs
Source:
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 运行时,或使用特定于当前体系结构的说明。 不同的操作系统或体系结构之间的确切结果可能有所不同。

适用于