Cpp-standard-library-cpp-complex-sin

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

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

説明

これは複素数のサインであり、複素数xのサインを返します。

宣言

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

C 11

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

パラメーター

*x* -複素数値です。

戻り値

複素数xのサインを返します。

例外

none