std::log10(std::complex)

From cppreference.com
< cpp‎ | numeric‎ | complex
Defined in header <complex>
template< class T >
complex<T> log10( const complex<T>& z );

Computes complex common (base 10) logarithm of a complex value z with a branch cut along the negative real axis.

[edit] Parameters

z - complex value

[edit] Return value

Complex common logarithm of z

[edit] See also

complex natural logarithm with the branch cuts along the negative real axis
(function template)
computes common (base 10) logarithm (log10(x))
(function)
applies the function std::log10 to each element of valarray
(function template)