/// <summary>
 /// Returns a Norm of a value of this type, which is appropriate for measuring how
 /// close this value is to zero.
 /// </summary>
 public static double Norm(this Complex complex)
 {
     return(complex.MagnitudeSquared());
 }