Colt 1.1.0

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 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 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 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 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 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 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 Complex.conjugate(Complex z)
          Returns the complex conjugate of a Complex object.
static Complex Complex.cos(Complex z)
          Returns the cosine of a Complex.
static Complex Complex.cosh(Complex z)
          Returns the hyperbolic cosh of a Complex.
static Complex Complex.exp(Complex z)
          Returns the exponential of a Complex z, exp(z).
static Complex Complex.log(Complex z)
          Returns the logarithm of a Complex z, with a branch cut along the negative real axis.
 Complex Complex.minus(double y)
          Subtracts a double from this Complex and returns the difference, this-y.
static Complex Complex.minus(double x, Complex y)
          Returns the difference of a double and a Complex object, x-y.
 Complex Complex.minus(Complex y)
          Returns the difference of this Complex object and another Complex object, this-y.
static Complex Complex.minus(Complex x, double y)
          Returns the difference of a Complex object and a double, x-y.
static Complex Complex.minus(Complex x, Complex y)
          Returns the difference of two Complex objects, x-y.
 Complex Complex.minusReverse(double x)
          Returns the difference of this Complex object and a double, this-y.
static Complex Complex.negative(Complex z)
          Returns the negative of a Complex object, -z.
 Complex Complex.over(double y)
          Returns this Complex object divided by double, this/y.
static Complex Complex.over(double x, Complex y)
          Returns a double divided by a Complex object, x/y.
 Complex Complex.over(Complex y)
          Returns this Complex object divided by another Complex object, this/y.
static Complex Complex.over(Complex x, double y)
          Returns Complex object divided by a double, x/y.
static Complex Complex.over(Complex x, Complex y)
          Returns Complex object divided by a Complex object, x/y.
 Complex Complex.overReverse(double x)
          Returns a double dividied by this Complex object, x/this.
 Complex Complex.plus(double y)
          Returns the sum of this Complex a double, this+y.
static Complex Complex.plus(double x, Complex y)
          Returns the sum of a double and a Complex, x+y.
 Complex Complex.plus(Complex y)
          Returns the sum of this Complex and another Complex, this+y.
static Complex Complex.plus(Complex x, double y)
          Returns the sum of a Complex and a double, x+y.
static Complex Complex.plus(Complex x, Complex y)
          Returns the sum of two Complex objects, x+y.
 Complex Complex.plusReverse(double x)
          Returns the sum of this Complex and a double, x+this.
static Complex 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 Complex.pow(Complex x, Complex y)
          Returns the Complex x raised to the Complex y power.
static Complex Complex.sin(Complex z)
          Returns the sine of a Complex.
static Complex Complex.sinh(Complex z)
          Returns the hyperbolic sine of a Complex.
static Complex Complex.sqrt(Complex z)
          Returns the square root of a Complex, with a branch cut along the negative real axis.
static Complex Complex.tan(Complex z)
          Returns the tangent of a Complex.
static Complex Complex.tanh(Complex z)
          Returns the hyperbolic tanh of a Complex.
 Complex Complex.times(double y)
          Returns the product of this Complex object and a double, this*y.
static Complex Complex.times(double x, Complex y)
          Returns the product of a double and a Complex object, x*y.
 Complex Complex.times(Complex y)
          Returns the product of this Complex object and another Complex object, this*y.
static Complex Complex.times(Complex x, double y)
          Returns the product of a Complex object and a double, x*y.
static Complex Complex.times(Complex x, Complex y)
          Returns the product of two Complex objects, x*y.
 Complex Complex.timesReverse(double x)
          Returns the product of a double and this Complex, x*this.
static Complex Complex.valueOf(String s)
          Parses a string into a Complex.
 

Methods in com.imsl.math with parameters of type Complex
static double Complex.abs(Complex z)
          Returns the absolute value (modulus) of a Complex, |z|.
static Complex 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 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 Complex.argument(Complex z)
          Returns the argument (phase) of a Complex, in radians, with a branch cut along the negative real axis.
static Complex 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 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 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 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 Complex.conjugate(Complex z)
          Returns the complex conjugate of a Complex object.
static Complex Complex.cos(Complex z)
          Returns the cosine of a Complex.
static Complex Complex.cosh(Complex z)
          Returns the hyperbolic cosh of a Complex.
 boolean Complex.equals(Complex z)
          Compares with another Complex.
static Complex Complex.exp(Complex z)
          Returns the exponential of a Complex z, exp(z).
static double Complex.imag(Complex z)
          Returns the imaginary part of a Complex object.
static Complex Complex.log(Complex z)
          Returns the logarithm of a Complex z, with a branch cut along the negative real axis.
static Complex Complex.minus(double x, Complex y)
          Returns the difference of a double and a Complex object, x-y.
 Complex Complex.minus(Complex y)
          Returns the difference of this Complex object and another Complex object, this-y.
static Complex Complex.minus(Complex x, double y)
          Returns the difference of a Complex object and a double, x-y.
static Complex Complex.minus(Complex x, Complex y)
          Returns the difference of two Complex objects, x-y.
static Complex Complex.negative(Complex z)
          Returns the negative of a Complex object, -z.
static Complex Complex.over(double x, Complex y)
          Returns a double divided by a Complex object, x/y.
 Complex Complex.over(Complex y)
          Returns this Complex object divided by another Complex object, this/y.
static Complex Complex.over(Complex x, double y)
          Returns Complex object divided by a double, x/y.
static Complex Complex.over(Complex x, Complex y)
          Returns Complex object divided by a Complex object, x/y.
static Complex Complex.plus(double x, Complex y)
          Returns the sum of a double and a Complex, x+y.
 Complex Complex.plus(Complex y)
          Returns the sum of this Complex and another Complex, this+y.
static Complex Complex.plus(Complex x, double y)
          Returns the sum of a Complex and a double, x+y.
static Complex Complex.plus(Complex x, Complex y)
          Returns the sum of two Complex objects, x+y.
static Complex 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 Complex.pow(Complex x, Complex y)
          Returns the Complex x raised to the Complex y power.
static double Complex.real(Complex z)
          Returns the real part of a Complex object.
static Complex Complex.sin(Complex z)
          Returns the sine of a Complex.
static Complex Complex.sinh(Complex z)
          Returns the hyperbolic sine of a Complex.
static Complex Complex.sqrt(Complex z)
          Returns the square root of a Complex, with a branch cut along the negative real axis.
static Complex Complex.tan(Complex z)
          Returns the tangent of a Complex.
static Complex Complex.tanh(Complex z)
          Returns the hyperbolic tanh of a Complex.
static Complex Complex.times(double x, Complex y)
          Returns the product of a double and a Complex object, x*y.
 Complex Complex.times(Complex y)
          Returns the product of this Complex object and another Complex object, this*y.
static Complex Complex.times(Complex x, double y)
          Returns the product of a Complex object and a double, x*y.
static Complex 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.1.0

Jump to the Colt Homepage