Cpp-standard-library-cpp-complex-asinh

提供:Dev Guides
移動先:案内検索

C ++複雑なライブラリ-Asinh

説明

これは、複素数の逆双曲線正弦であり、複素数xの逆双曲線正弦を返します。

宣言

以下は、std
asinhの宣言です。
template<class T> complex<T> asinh (const complex<T>& x);

C 11

template<class T> complex<T> asinh (const complex<T>& x);

パラメーター

*x* -複素数値です。

戻り値

複素数xのアーク双曲線正弦を返します。

例外

none