Uses of Class
jjil.core.Complex

Packages that use Complex
jjil.algorithm   
jjil.core   
 

Uses of Complex in jjil.algorithm
 

Methods in jjil.algorithm that return Complex
 Complex[] Fft1d.fft(Complex[] x)
          Computes forward FFT of the complex array.
 Complex[] Fft1d.ifft(Complex[] x)
          Computes inverse FFT of the input complex array.
 

Methods in jjil.algorithm with parameters of type Complex
 Complex[] Fft1d.fft(Complex[] x)
          Computes forward FFT of the complex array.
 Complex[] Fft1d.ifft(Complex[] x)
          Computes inverse FFT of the input complex array.
 

Uses of Complex in jjil.core
 

Methods in jjil.core that return Complex
 Complex Complex.conjugate()
          Complex conjugate
 Complex Complex.div(Complex cx)
          Divides one complex number by another
 Complex Complex.div(int n)
          Divide the complex number by a real ineger.
static Complex MathPlus.expImag(int x)
          Returns the complex number e**(ix), that is,
cos x + i sin x (de Moivre's rule)
 Complex[] Complex32Image.getData()
          Return a pointer to the image data.
 Complex Complex.lsh(int n)
          Shifts a complex number left a certain number of bits.
 Complex Complex.minus(Complex cx)
          Subtracts one complex number from another.
 Complex Complex.plus(Complex cx)
          Adds two complex numbers.
 Complex Complex.rsh(int n)
          Shifts a complex number right a certain number of bits.
 Complex Complex.times(Complex cx)
          Multiplies two complex numbers.
 Complex Complex.times(int nX)
          Multiplies a complex number by a real number.
 

Methods in jjil.core with parameters of type Complex
 Complex Complex.div(Complex cx)
          Divides one complex number by another
 boolean Complex.equals(Complex cx)
          Equality test.
 Complex Complex.minus(Complex cx)
          Subtracts one complex number from another.
 Complex Complex.plus(Complex cx)
          Adds two complex numbers.
 Complex Complex.times(Complex cx)
          Multiplies two complex numbers.
 

Constructors in jjil.core with parameters of type Complex
Complex(Complex cx)
          Copy constructor.