C++ Complex Library - Log10



Description

It is a common logarithm of complex and returns the common (base-10) logarithm of the complex number x using the principal branch.

Declaration

Following is the declaration for std::log10

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

C++11

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

Parameters

x − It is a complex value.

Return Value

It returns common logarithm of x.

Exceptions

none

complex.htm
Advertisements