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的常用對數。

異常

complex.htm
廣告