Uses of Class
gnu.math.Complex

Packages that use Complex
gnu.kawa.xml Classes for using XML within Kawa. 
gnu.math Supports various numeric types, including complex numbers, efficient bignums, exact rational numbers, units. 
 

Uses of Complex in gnu.kawa.xml
 

Subclasses of Complex in gnu.kawa.xml
 class XInteger
          An integer that is an instance of a more specific integer type.
 

Uses of Complex in gnu.math
 

Subclasses of Complex in gnu.math
 class CComplex
          General Cartesian Complex number.
 class DComplex
          A complex number using rectangular (Cartesian) plain double values.
 class DFloNum
           
 class IntFraction
          Implementation of exact rational numbers a ratio of two IntNums.
 class IntNum
          A class for infinite-precision integers.
 class RatNum
          The abstract class of rational numbers.
 class RealNum
           
 

Methods in gnu.math that return Complex
static Complex Complex.add(Complex x, Complex y, int k)
           
static Complex Complex.divide(Complex x, Complex y)
           
 Complex RealNum.exp()
           
 Complex Complex.exp()
           
 Complex RealNum.log()
           
 Complex Complex.log()
           
static Complex DComplex.log(double x_re, double x_im)
           
static Complex Complex.make(double re, double im)
           
static Complex Complex.make(RealNum re, RealNum im)
           
static Complex Complex.neg(Complex x)
           
 Complex DateTime.number()
           
 Complex CQuantity.number()
           
 Complex Unit.number()
           
abstract  Complex Quantity.number()
           
 Complex DQuantity.number()
           
 Complex Duration.number()
           
 Complex Complex.number()
           
static Complex Complex.power(Complex x, Complex y)
           
 Complex RealNum.sin()
           
 Complex RealNum.sqrt()
           
 Complex Complex.sqrt()
           
static Complex DComplex.sqrt(double x_re, double x_im)
           
static Complex Complex.times(Complex x, Complex y)
           
 

Methods in gnu.math with parameters of type Complex
static Complex Complex.add(Complex x, Complex y, int k)
           
static int Complex.compare(Complex x, Complex y)
           
static Complex Complex.divide(Complex x, Complex y)
           
static boolean Complex.equals(Complex x, Complex y)
           
static Quantity Quantity.make(Complex x, Unit u)
           
static Complex Complex.neg(Complex x)
           
static Complex Complex.power(Complex x, Complex y)
           
static Complex Complex.times(Complex x, Complex y)
           
 

Constructors in gnu.math with parameters of type Complex
CQuantity(Complex num, Unit unit)