Cpp-standard-library-cpp-complex-tan

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

C ++複雑なライブラリ-タン

説明

複素数のタンジェントであり、複素数xのタンジェントを返します。

宣言

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

C 11

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

パラメーター

*x* -複素数値です。

戻り値

複素数xのタンジェントを返します。

例外

none