Complex.Sinh(Complex) 方法

定义

返回指定复数的双曲正弦值。

public:
 static System::Numerics::Complex Sinh(System::Numerics::Complex value);
public static System.Numerics.Complex Sinh (System.Numerics.Complex value);
static member Sinh : System.Numerics.Complex -> System.Numerics.Complex
Public Shared Function Sinh (value As Complex) As Complex

参数

value
Complex

复数。

返回

value的双曲正弦值。

注解

复数 Sinh 方法对应于实数的 Math.Sinh 方法。

Sinh 方法将复数的双曲正弦值计算为 a + bix + yi,其中:

  • x $\sinh a \times \cos b$
  • y 是 $\cosh a \times \sin b$

适用于

另请参阅