Colt 1.0.1

Uses of Class
com.imsl.math.Complex

Packages that use Complex
com.imsl.math Special mathematical functions and Complex numbers. 
 

Uses of Complex in com.imsl.math
 

Methods in com.imsl.math that return Complex
static Complex acos(Complex z)
          Returns the inverse cosine (arc cosine) of a Complex, with branch cuts outside the interval [-1,1] along the real axis.
static Complex acosh(Complex z)
          Returns the inverse hyperbolic cosine (arc cosh) of a Complex, with a branch cut at values less than one along the real axis.
static Complex asin(Complex z)
          Returns the inverse sine (arc sine) of a Complex, with branch cuts outside the interval [-1,1] along the real axis.
static Complex asinh(Complex z)
          Returns the inverse hyperbolic sine (arc sinh) of a Complex, with a branch cuts outside the interval [-i,i].
static Complex atan(Complex z)
          Returns the inverse tangent (arc tangent) of a Complex, with branch cuts outside the interval [-i,i] along the imaginary axis.
static Complex atanh(Complex z)
          Returns the inverse hyperbolic tangent (arc tanh) of a Complex, with a branch cuts outside the interval [-1,1] on the real axis.
static Complex conjugate(Complex z)
          Returns the complex conjugate of a Complex object.
static Complex cos(Complex z)
          Returns the cosine of a Complex.
static Complex cosh(Complex z)
          Returns the hyperbolic cosh of a Complex.
static Complex exp(Complex z)
          Returns the exponential of a Complex z, exp(z).
static Complex log(Complex z)
          Returns the logarithm of a Complex z, with a branch cut along the negative real axis.
 Complex minus(double y)
          Subtracts a double from this Complex and returns the difference, this-y.
static Complex minus(double x, Complex y)
          Returns the difference of a double and a Complex object, x-y.
 Complex minus(Complex y)
          Returns the difference of this Complex object and another Complex object, this-y.
static Complex minus(Complex x, double y)
          Returns the difference of a Complex object and a double, x-y.
static Complex minus(Complex x, Complex y)
          Returns the difference of two Complex objects, x-y.
 Complex minusReverse(double x)
          Returns the difference of this Complex object and a double, this-y.
static Complex negative(Complex z)
          Returns the negative of a Complex object, -z.
 Complex over(double y)
          Returns this Complex object divided by double, this/y.
static Complex over(double x, Complex y)
          Returns a double divided by a Complex object, x/y.
 Complex over(Complex y)
          Returns this Complex object divided by another Complex object, this/y.
static Complex over(Complex x, double y)
          Returns Complex object divided by a double, x/y.
static Complex over(Complex x, Complex y)
          Returns Complex object divided by a Complex object, x/y.
 Complex overReverse(double x)
          Returns a double dividied by this Complex object, x/this.
 Complex plus(double y)
          Returns the sum of this Complex a double, this+y.
static Complex plus(double x, Complex y)
          Returns the sum of a double and a Complex, x+y.
 Complex plus(Complex y)
          Returns the sum of this Complex and another Complex, this+y.
static Complex plus(Complex x, double y)
          Returns the sum of a Complex and a double, x+y.
static Complex plus(Complex x, Complex y)
          Returns the sum of two Complex objects, x+y.
 Complex plusReverse(double x)
          Returns the sum of this Complex and a double, x+this.
static Complex pow(Complex z, double x)
          Returns the Complex z raised to the x power, with a branch cut for the first parameter (z) along the negative real axis.
static Complex pow(Complex x, Complex y)
          Returns the Complex x raised to the Complex y power.
static Complex sin(Complex z)
          Returns the sine of a Complex.
static Complex sinh(Complex z)
          Returns the hyperbolic sine of a Complex.
static Complex sqrt(Complex z)
          Returns the square root of a Complex, with a branch cut along the negative real axis.
static Complex tan(Complex z)
          Returns the tangent of a Complex.
static Complex tanh(Complex z)
          Returns the hyperbolic tanh of a Complex.
 Complex times(double y)
          Returns the product of this Complex object and a double, this*y.
static Complex times(double x, Complex y)
          Returns the product of a double and a Complex object, x*y.
 Complex times(Complex y)
          Returns the product of this Complex object and another Complex object, this*y.
static Complex times(Complex x, double y)
          Returns the product of a Complex object and a double, x*y.
static Complex times(Complex x, Complex y)
          Returns the product of two Complex objects, x*y.
 Complex timesReverse(double x)
          Returns the product of a double and this Complex, x*this.
static Complex valueOf(String s)
          Parses a string into a Complex.
 

Methods in com.imsl.math with parameters of type Complex
static double abs(Complex z)
          Returns the absolute value (modulus) of a Complex, |z|.
static Complex acos(Complex z)
          Returns the inverse cosine (arc cosine) of a Complex, with branch cuts outside the interval [-1,1] along the real axis.
static Complex acosh(Complex z)
          Returns the inverse hyperbolic cosine (arc cosh) of a Complex, with a branch cut at values less than one along the real axis.
static double argument(Complex z)
          Returns the argument (phase) of a Complex, in radians, with a branch cut along the negative real axis.
static Complex asin(Complex z)
          Returns the inverse sine (arc sine) of a Complex, with branch cuts outside the interval [-1,1] along the real axis.
static Complex asinh(Complex z)
          Returns the inverse hyperbolic sine (arc sinh) of a Complex, with a branch cuts outside the interval [-i,i].
static Complex atan(Complex z)
          Returns the inverse tangent (arc tangent) of a Complex, with branch cuts outside the interval [-i,i] along the imaginary axis.
static Complex atanh(Complex z)
          Returns the inverse hyperbolic tangent (arc tanh) of a Complex, with a branch cuts outside the interval [-1,1] on the real axis.
static Complex conjugate(Complex z)
          Returns the complex conjugate of a Complex object.
static Complex cos(Complex z)
          Returns the cosine of a Complex.
static Complex cosh(Complex z)
          Returns the hyperbolic cosh of a Complex.
 boolean equals(Complex z)
          Compares with another Complex.
static Complex exp(Complex z)
          Returns the exponential of a Complex z, exp(z).
static double imag(Complex z)
          Returns the imaginary part of a Complex object.
static Complex log(Complex z)
          Returns the logarithm of a Complex z, with a branch cut along the negative real axis.
static Complex minus(double x, Complex y)
          Returns the difference of a double and a Complex object, x-y.
 Complex minus(Complex y)
          Returns the difference of this Complex object and another Complex object, this-y.
static Complex minus(Complex x, double y)
          Returns the difference of a Complex object and a double, x-y.
static Complex minus(Complex x, Complex y)
          Returns the difference of two Complex objects, x-y.
static Complex negative(Complex z)
          Returns the negative of a Complex object, -z.
static Complex over(double x, Complex y)
          Returns a double divided by a Complex object, x/y.
 Complex over(Complex y)
          Returns this Complex object divided by another Complex object, this/y.
static Complex over(Complex x, double y)
          Returns Complex object divided by a double, x/y.
static Complex over(Complex x, Complex y)
          Returns Complex object divided by a Complex object, x/y.
static Complex plus(double x, Complex y)
          Returns the sum of a double and a Complex, x+y.
 Complex plus(Complex y)
          Returns the sum of this Complex and another Complex, this+y.
static Complex plus(Complex x, double y)
          Returns the sum of a Complex and a double, x+y.
static Complex plus(Complex x, Complex y)
          Returns the sum of two Complex objects, x+y.
static Complex pow(Complex z, double x)
          Returns the Complex z raised to the x power, with a branch cut for the first parameter (z) along the negative real axis.
static Complex pow(Complex x, Complex y)
          Returns the Complex x raised to the Complex y power.
static double real(Complex z)
          Returns the real part of a Complex object.
static Complex sin(Complex z)
          Returns the sine of a Complex.
static Complex sinh(Complex z)
          Returns the hyperbolic sine of a Complex.
static Complex sqrt(Complex z)
          Returns the square root of a Complex, with a branch cut along the negative real axis.
static Complex tan(Complex z)
          Returns the tangent of a Complex.
static Complex tanh(Complex z)
          Returns the hyperbolic tanh of a Complex.
static Complex times(double x, Complex y)
          Returns the product of a double and a Complex object, x*y.
 Complex times(Complex y)
          Returns the product of this Complex object and another Complex object, this*y.
static Complex times(Complex x, double y)
          Returns the product of a Complex object and a double, x*y.
static Complex times(Complex x, Complex y)
          Returns the product of two Complex objects, x*y.
 

Constructors in com.imsl.math with parameters of type Complex
Complex(Complex z)
          Constructs a Complex equal to the argument.
 


Colt 1.0.1

Submit a bug or feature. Check the Colt home page for the latest news.