Uses of Class
jcuda.cuDoubleComplex

Packages that use cuDoubleComplex
jcuda Contains common classes for all JCuda libraries. 
 

Uses of cuDoubleComplex in jcuda
 

Methods in jcuda that return cuDoubleComplex
static cuDoubleComplex cuDoubleComplex.cuCadd(cuDoubleComplex x, cuDoubleComplex y)
          Returns a new complex number that is the sum of the given complex numbers.
static cuDoubleComplex cuDoubleComplex.cuCdiv(cuDoubleComplex x, cuDoubleComplex y)
          Returns the quotient of the given complex numbers.
static cuDoubleComplex cuDoubleComplex.cuCmplx(double r, double i)
          Creates a new complex number consisting of the given real and imaginary part.
static cuDoubleComplex cuDoubleComplex.cuCmul(cuDoubleComplex x, cuDoubleComplex y)
          Returns the product of the given complex numbers.
static cuDoubleComplex cuDoubleComplex.cuConj(cuDoubleComplex x)
          Returns the complex conjugate of the given complex number.
 

Methods in jcuda with parameters of type cuDoubleComplex
static double cuDoubleComplex.cuCabs(cuDoubleComplex x)
          Returns the absolute value of the given complex number.
static cuDoubleComplex cuDoubleComplex.cuCadd(cuDoubleComplex x, cuDoubleComplex y)
          Returns a new complex number that is the sum of the given complex numbers.
static cuDoubleComplex cuDoubleComplex.cuCdiv(cuDoubleComplex x, cuDoubleComplex y)
          Returns the quotient of the given complex numbers.
static double cuDoubleComplex.cuCimag(cuDoubleComplex x)
          Returns the imaginary part of the given complex number.
static cuDoubleComplex cuDoubleComplex.cuCmul(cuDoubleComplex x, cuDoubleComplex y)
          Returns the product of the given complex numbers.
static cuDoubleComplex cuDoubleComplex.cuConj(cuDoubleComplex x)
          Returns the complex conjugate of the given complex number.
static double cuDoubleComplex.cuCreal(cuDoubleComplex x)
          Returns the real part of the given complex number.