80 return EST_Complex((z1.r * z2.r) - (z1.i * z2.i), (z1.r * z2.i) + (z1.i * z2.r));
A class for complex numbers.
EST_Complex operator*(const EST_Complex &z1, const EST_Complex &z2)
EST_Complex operator-(const EST_Complex &z1, const EST_Complex &z2)
EST_Complex operator/(const EST_Complex &z1, const EST_Complex &z2)
EST_Complex operator+(const EST_Complex &z1, const EST_Complex &z2)
double mag() const
Polar magnitude, read only.