Complex.Cosh(Complex) 方法

定义

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

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

参数

value
Complex

复数。

返回

value的双曲余弦值。

注解

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

Cosh 方法将复数 a + bi 的双曲余弦值计算为 x + yi,其中:

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

适用于

另请参阅