abs
absolute value of a complex number
INTERFACE
#include <complex>
double abs(complex<T> z );
DESCRIPTION
The abs function returns the absolute value of the complex number . The result is the real number denoted by
and defined through:
(1)
The function is actually an alias for hypot(a, b) = .