Uses of Class
ch.aplu.util.Complex

Packages that use Complex
ch.aplu.util Package with useful helper classes for developing applications using the JDroidLib framework. 
 

Uses of Complex in ch.aplu.util
 

Methods in ch.aplu.util that return Complex
static Complex Complex.add(Complex cvalue1, Complex cvalue2)
          Define a static add method that creates a a new Complex object with the sum.
static Complex Complex.divide(Complex cvalue1, Complex cvalue2)
          Define a static divide method that creates a a new Complex object with the result of cvalue1/cvalue2.
static Complex Complex.multiply(Complex cvalue1, Complex cvalue2)
          Define a static multiply method that creates a a new Complex object with the product.
static Complex Complex.subtract(Complex cvalue1, Complex cvalue2)
          Define a static subtract method that creates a a new Complex object equal to cvalue1 - cvalue2.
 

Methods in ch.aplu.util with parameters of type Complex
 void Complex.add(Complex cvalue)
          Define a complex add method.
static Complex Complex.add(Complex cvalue1, Complex cvalue2)
          Define a static add method that creates a a new Complex object with the sum.
 void Complex.divide(Complex cvalue)
          Divide this complex object by the complex argument.
static Complex Complex.divide(Complex cvalue1, Complex cvalue2)
          Define a static divide method that creates a a new Complex object with the result of cvalue1/cvalue2.
 boolean Complex.equals(Complex cvalue)
          Check for the equality of this object with that of the argument.
 void Complex.multiply(Complex cvalue)
          Multiply this complex object by the complex argument.
static Complex Complex.multiply(Complex cvalue1, Complex cvalue2)
          Define a static multiply method that creates a a new Complex object with the product.
 void Complex.subtract(Complex cvalue)
          Define a complex subtract method.
static Complex Complex.subtract(Complex cvalue1, Complex cvalue2)
          Define a static subtract method that creates a a new Complex object equal to cvalue1 - cvalue2.