Computes the complex absolute value (magnitude) of z.
z
double cabs(complex z) => math.sqrt(z.real * z.real + z.imag * z.imag);