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