Cpp-standard-library-cpp-complex-cos

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

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

説明

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

宣言

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

C 11

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

パラメーター

*x* -複素数値です。

戻り値

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

例外

none