void | 
Complex.add(Complex c1,
   Complex c2) | 
 Adds to complex numbers. 
 | 
void | 
Complex.addMultiply(Complex c0,
           Complex c1,
           Complex c2) | 
 Multplies two complex numbers, and add the result to a third one. 
 | 
void | 
Complex.copy(Complex c) | 
 Set this complex number to the same value than the specified one. 
 | 
void | 
Complex.divide(Complex c1,
      Complex c2) | 
 Divides one complex number by another. 
 | 
boolean | 
Complex.equals(Complex c) | 
 Returns true if this complex number has the same value than the specified one. 
 | 
void | 
Complex.multiply(Complex c,
        double s) | 
 Multiplies a complex number by a scalar. 
 | 
void | 
Complex.multiply(Complex c1,
        Complex c2) | 
 Multplies two complex numbers. 
 | 
void | 
Complex.power(Complex c,
     int power) | 
 Computes the integer power of a complex number up to 6. 
 |