Complex | 
Complex.acos() | 
 | 
Complex | 
Complex.acosh() | 
 | 
Complex | 
Complex.add(double addend) | 
 Returns a Complex whose value is (this + addend),
 with addend interpreted as a real number. 
 | 
Complex | 
Complex.add(Complex addend) | 
 Returns a Complex whose value is (this + addend). 
 | 
Complex | 
Complex.addImaginary(double addend) | 
 Returns a Complex whose value is (this + addend),
 with addend interpreted as an imaginary number. 
 | 
Complex | 
Complex.asin() | 
 | 
Complex | 
Complex.asinh() | 
 | 
Complex | 
Complex.atan() | 
 | 
Complex | 
Complex.atanh() | 
 | 
Complex | 
Complex.conj() | 
Returns the
  conjugate
 \( \overline{z} \) of this complex number \( z \).  
 | 
Complex | 
Complex.cos() | 
Returns the
  
 cosine of this complex number.  
 | 
Complex | 
Complex.cosh() | 
 | 
Complex | 
Complex.divide(double divisor) | 
 Returns a Complex whose value is (this / divisor),
 with divisor interpreted as a real number. 
 | 
Complex | 
Complex.divide(Complex divisor) | 
 Returns a Complex whose value is (this / divisor). 
 | 
Complex | 
Complex.divideImaginary(double divisor) | 
 Returns a Complex whose value is (this / divisor),
 with divisor interpreted as an imaginary number. 
 | 
Complex | 
Complex.exp() | 
 | 
Complex | 
Complex.log() | 
 | 
Complex | 
Complex.log10() | 
 | 
Complex | 
Complex.multiply(double factor) | 
 Returns a Complex whose value is this * factor, with factor
 interpreted as a real number. 
 | 
Complex | 
Complex.multiply(Complex factor) | 
 Returns a Complex whose value is this * factor. 
 | 
Complex | 
Complex.multiplyImaginary(double factor) | 
 Returns a Complex whose value is this * factor, with factor
 interpreted as an imaginary number. 
 | 
Complex | 
Complex.negate() | 
 Returns a Complex whose value is the negation of both the real and imaginary parts
 of complex number \( z \). 
 | 
static Complex | 
Complex.ofCartesian(double real,
           double imaginary) | 
 Create a complex number given the real and imaginary parts. 
 | 
static Complex | 
Complex.ofCis(double x) | 
 Create a complex cis number. 
 | 
static Complex | 
Complex.ofPolar(double rho,
       double theta) | 
 Creates a complex number from its polar representation using modulus rho (\( \rho \))
 and phase angle theta (\( \theta \)).
 \[ \begin{aligned}
    x &= \rho \cos(\theta) \\
    y &= \rho \sin(\theta) \end{aligned} \] 
 | 
static Complex | 
Complex.parse(String s) | 
 Returns a Complex instance representing the specified string s. 
 | 
Complex | 
Complex.pow(double x) | 
 Returns the complex power of this complex number raised to the power of x,
 with x interpreted as a real number. 
 | 
Complex | 
Complex.pow(Complex x) | 
 Returns the complex power of this complex number raised to the power of x. 
 | 
Complex | 
Complex.proj() | 
 Returns the projection of this complex number onto the Riemann sphere. 
 | 
Complex | 
Complex.sin() | 
Returns the
  
 sine of this complex number.  
 | 
Complex | 
Complex.sinh() | 
 | 
Complex | 
Complex.sqrt() | 
 | 
Complex | 
Complex.subtract(double subtrahend) | 
 Returns a Complex whose value is (this - subtrahend),
 with subtrahend interpreted as a real number. 
 | 
Complex | 
Complex.subtract(Complex subtrahend) | 
 Returns a Complex whose value is (this - subtrahend). 
 | 
Complex | 
Complex.subtractFrom(double minuend) | 
 Returns a Complex whose value is (minuend - this),
 with minuend interpreted as a real number. 
 | 
Complex | 
Complex.subtractFromImaginary(double minuend) | 
 Returns a Complex whose value is (this - subtrahend),
 with minuend interpreted as an imaginary number. 
 | 
Complex | 
Complex.subtractImaginary(double subtrahend) | 
 Returns a Complex whose value is (this - subtrahend),
 with subtrahend interpreted as an imaginary number. 
 | 
Complex | 
Complex.tan() | 
Returns the
  
 tangent of this complex number.  
 | 
Complex | 
Complex.tanh() | 
 |