Complex.Cosh(Complex) メソッド
定義
指定した複素数のハイパーボリック コサインを返します。Returns the hyperbolic cosine of the specified complex number.
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
複素数。A complex number.
戻り値
value
のハイパーボリック コサイン。The hyperbolic cosine of value
.
注釈
複素数のメソッドは、 Cosh 実数のメソッドに対応して Math.Cosh います。The Cosh method for complex numbers corresponds to the Math.Cosh method for real numbers.
メソッドは、 Cosh 次の式を使用して、複素数 a + bi のハイパーボリックコサインを計算します。The Cosh method uses the following formula to calculate the hyperbolic cosine of the complex number a + bi:
( Cosh (a) * Cos (b)、 Sinh (a) * Sin (b))(Cosh(a) * Cos(b), Sinh(a) * Sin(b))