Standard C++ Library Class Reference

atan2 (const complex<T>& a, const complex<T>& b);
Returns the arctangent of a/b.
template<class T> complex<T>
conj (const complex<T>& c);
Returns the conjugate of c.
template<class T> complex<T>
cos (const complex<T>& c);
Returns the cosine of c.
template<class T> complex<T>
cosh (const complex<T>& c);
Returns the hyperbolic cosine of c.
template<class T> complex<T>
exp (const complex<T>& x);
Returns e raised to the x power.
template<class T> T
imag (const complex<T>& c) const;
Returns the imaginary part of c.
template<class T> complex<T>
log (const complex<T>& x);
Returns the natural logarithm of x.
template<class T> complex<T>
log10 (const complex<T>& x);
Returns the logarithm base 10 of x.
template<class T> T
norm (const complex<T>& c);
Returns the squared magnitude of c. (The sum of the squares of the real and imaginary
parts.)
template<class T> complex<T>
polar (const T& m, const T& a);
Returns the complex value of a complex number whose magnitude is m and phase angle
is a, measured in radians.
template<class T> complex<T>
pow (const complex<T>& x, int y);
template<class T> complex<T>
pow (const complex<T>& x, T y);
template<class T> complex<T>