Uses of Class
com.rubecula.jquantity.Complex

Packages that use Complex
com.rubecula.jquantity

JQuantity Contents: Copyright Notice Overview JQuantity Philosophy Programming Conventions Package Structure
Class Structure Links Important Note about the links to classes in this document:  This document appears in two different places: the source tree and the doc tree (where it is placed by the javadoc program). 

 

Uses of Complex in com.rubecula.jquantity
 

Fields in com.rubecula.jquantity declared as Complex
static Complex Complex.$0
          The constant value of 0 (Cartesian/Exponential side).
static Complex Complex.$1
          The constant real value of 1 (Cartesian/Exponential side).
static Complex Complex.$I
          The constant imaginary value of 1 (Cartesian/Exponential side).
 

Methods in com.rubecula.jquantity that return Complex
static Complex Complex.Parse(SymbolicPresentation presentation, java.lang.String identifier)
          Translates the SymbolicPresentation representation of a complex number into a Complex.
static Complex Complex.valueOf(BaseNumber number)
          Factory method to create a real-valued Complex from a BaseNumber.
static Complex Complex.valueOf(java.lang.String string)
          Translates the String representation of a Complex into a Complex.
 Complex Complex.factored(Rational factor)
          Method to yield the quotient of this divided by factor, and return it as the result.
 Complex Complex.product(Complex multiplicand)
          Method to yield the product of this and multiplicand.
 Complex Complex.sum(Complex addend)
          Method to yield the sum of this and addend.
 Complex Complex.difference(Complex subtrahend)
          Method to yield the difference of this less subtrahend.
 Complex Complex.minus()
          Method to determine the negated value of this.
 Complex Complex.square()
          Method to yield the square of this.
 Complex Complex.pow(Item power)
          Method to yield this raised to the power specified.
 Complex Complex.pow(Complex power)
          Method to yield this raised to the power specified.
 Complex Complex.pow(int power)
          Method to yield this raised to the power specified.
 Complex Complex.pow(double power)
          Method to yield this raised to the power specified.
 Complex Complex.pow(BaseNumber power)
          Method to yield this raised to the power specified.
 Complex Complex.convertValue(boolean polar)
          Method to yield an equivalent Complex instance to this, but where the "side" is defined by polar.
 

Methods in com.rubecula.jquantity with parameters of type Complex
protected  int Complex.compareTo(Complex val, boolean strict)
          Compares this Complex with the specified Complex.
 int Complex.compareTo(Complex val)
          Compares this Complex with the specified Complex.
 Complex Complex.product(Complex multiplicand)
          Method to yield the product of this and multiplicand.
 Complex Complex.sum(Complex addend)
          Method to yield the sum of this and addend.
 Complex Complex.difference(Complex subtrahend)
          Method to yield the difference of this less subtrahend.
 Complex Complex.pow(Complex power)
          Method to yield this raised to the power specified.
 void Complex.add(Complex addend)
          MUTATING Instance method to add a Complex into this object.
 void Complex.multiply(Complex multiplicand)
          MUTATING Instance method to multiply another Arithmetical into this object.