std::log10(std::complex)
std::log10(std::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.
The behavior of this function is equivalent to std::log(z)/std::log(10)
.
Parameters
z | - | complex value | <