Cpp-standard-library-cpp-complex-log10

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

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

説明

複素数の常用対数であり、主枝を使用して複素数xの常用(10を底とする)対数を返します。

宣言

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

C 11

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

パラメーター

*x* -複素数値です。

戻り値

xの常用対数を返します。

例外

none