Uses of Class
annas.math.Complex

Packages that use Complex
annas.math   
 

Uses of Complex in annas.math
 

Methods in annas.math that return Complex
 Complex Complex.chs()
          Negative of this complex number (chs stands for change sign).
 Complex Complex.conj()
          Complex conjugate of this Complex number (the conjugate of x+i*y is x-i*y).
 Complex Complex.cos()
          Cosine of this Complex number (doesn't change this Complex number).
 Complex Complex.cosh()
          Hyperbolic cosine of this Complex number (doesn't change this Complex number).
 Complex Complex.div(Complex w)
          Division of Complex numbers (doesn't change this Complex number).
 Complex Complex.exp()
          Complex exponential (doesn't change this Complex number).
 Complex Complex.log()
          Principal branch of the Complex logarithm of this Complex number.
 Complex Complex.minus(Complex w)
          Subtraction of Complex numbers (doesn't change this Complex number).
 Complex Complex.plus(Complex w)
          Addition of Complex numbers (doesn't change this Complex number).
 Complex Complex.sin()
          Sine of this Complex number (doesn't change this Complex number).
 Complex Complex.sinh()
          Hyperbolic sine of this Complex number (doesn't change this Complex number).
 Complex Complex.sqrt()
          Complex square root (doesn't change this complex number).
 Complex Complex.tan()
          Tangent of this Complex number (doesn't change this Complex number).
 Complex Complex.times(Complex w)
          Complex multiplication (doesn't change this Complex number).
 

Methods in annas.math with parameters of type Complex
 Complex Complex.div(Complex w)
          Division of Complex numbers (doesn't change this Complex number).
 Complex Complex.minus(Complex w)
          Subtraction of Complex numbers (doesn't change this Complex number).
 Complex Complex.plus(Complex w)
          Addition of Complex numbers (doesn't change this Complex number).
 Complex Complex.times(Complex w)
          Complex multiplication (doesn't change this Complex number).