Uses of Class
org.apache.commons.math.complex.Complex

Packages that use Complex
org.apache.commons.math.complex Complex number type and implementations of complex transcendental functions. 
 

Uses of Complex in org.apache.commons.math.complex
 

Fields in org.apache.commons.math.complex declared as Complex
static Complex Complex.I
          The square root of -1.
static Complex Complex.NaN
          A complex number representing "NaN + NaNi"
static Complex Complex.ONE
          A complex number representing "1.0 + 0.0i"
static Complex Complex.ZERO
          A complex number representing "0.0 + 0.0i"
 

Methods in org.apache.commons.math.complex that return Complex
 Complex Complex.add(Complex rhs)
          Return the sum of this complex number and the given complex number.
 Complex Complex.conjugate()
          Return the conjugate of this complex number.
 Complex Complex.divide(Complex rhs)
          Return the quotient of this complex number and the given complex number.
 Complex Complex.multiply(Complex rhs)
          Return the product of this complex number and the given complex number.
 Complex Complex.negate()
          Return the additive inverse of this complex number.
 Complex Complex.subtract(Complex rhs)
          Return the difference between this complex number and the given complex number.
 Complex ComplexFormat.parse(String source)
          Parses a string to produce a Complex object.
 Complex ComplexFormat.parse(String source, ParsePosition pos)
          Parses a string to produce a Complex object.
static Complex ComplexUtils.acos(Complex z)
          Compute the inverse cosine for the given complex argument.
static Complex ComplexUtils.asin(Complex z)
          Compute the inverse sine for the given complex argument.
static Complex ComplexUtils.atan(Complex z)
          Compute the inverse tangent for the given complex argument.
static Complex ComplexUtils.cos(Complex z)
          Compute the cosine for the given complex argument.
static Complex ComplexUtils.cosh(Complex z)
          Compute the hyperbolic cosine for the given complex argument.
static Complex ComplexUtils.exp(Complex z)
          Compute the exponential function for the given complex argument.
static Complex ComplexUtils.log(Complex z)
          Compute the natural logarithm for the given complex argument.
static Complex ComplexUtils.polar2Complex(double r, double theta)
          Creates a complex number from the given polar representation.
static Complex ComplexUtils.pow(Complex y, Complex x)
          Returns of value of y raised to the power of x.
static Complex ComplexUtils.sin(Complex z)
          Compute the sine for the given complex argument.
static Complex ComplexUtils.sinh(Complex z)
          Compute the hyperbolic sine for the given complex argument.
static Complex ComplexUtils.sqrt(Complex z)
          Compute the square root for the given complex argument.
static Complex ComplexUtils.sqrt1z(Complex z)
          Compute the square root of 1 - z2 for the given complex argument.
static Complex ComplexUtils.tan(Complex z)
          Compute the tangent for the given complex argument.
static Complex ComplexUtils.tanh(Complex z)
          Compute the hyperbolic tangent for the given complex argument.
 

Methods in org.apache.commons.math.complex with parameters of type Complex
 Complex Complex.add(Complex rhs)
          Return the sum of this complex number and the given complex number.
 Complex Complex.divide(Complex rhs)
          Return the quotient of this complex number and the given complex number.
 Complex Complex.multiply(Complex rhs)
          Return the product of this complex number and the given complex number.
 Complex Complex.subtract(Complex rhs)
          Return the difference between this complex number and the given complex number.
static String ComplexFormat.formatComplex(Complex c)
          This static method calls formatComplex() on a default instance of ComplexFormat.
 StringBuffer ComplexFormat.format(Complex complex, StringBuffer toAppendTo, FieldPosition pos)
          Formats a Complex object to produce a string.
static Complex ComplexUtils.acos(Complex z)
          Compute the inverse cosine for the given complex argument.
static Complex ComplexUtils.asin(Complex z)
          Compute the inverse sine for the given complex argument.
static Complex ComplexUtils.atan(Complex z)
          Compute the inverse tangent for the given complex argument.
static Complex ComplexUtils.cos(Complex z)
          Compute the cosine for the given complex argument.
static Complex ComplexUtils.cosh(Complex z)
          Compute the hyperbolic cosine for the given complex argument.
static Complex ComplexUtils.exp(Complex z)
          Compute the exponential function for the given complex argument.
static Complex ComplexUtils.log(Complex z)
          Compute the natural logarithm for the given complex argument.
static Complex ComplexUtils.pow(Complex y, Complex x)
          Returns of value of y raised to the power of x.
static Complex ComplexUtils.sin(Complex z)
          Compute the sine for the given complex argument.
static Complex ComplexUtils.sinh(Complex z)
          Compute the hyperbolic sine for the given complex argument.
static Complex ComplexUtils.sqrt(Complex z)
          Compute the square root for the given complex argument.
static Complex ComplexUtils.sqrt1z(Complex z)
          Compute the square root of 1 - z2 for the given complex argument.
static Complex ComplexUtils.tan(Complex z)
          Compute the tangent for the given complex argument.
static Complex ComplexUtils.tanh(Complex z)
          Compute the hyperbolic tangent for the given complex argument.
 



Copyright © 2003-2008 The Apache Software Foundation. All Rights Reserved.