Uses of Class
jcuda.cuComplex

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

Uses of cuComplex in jcuda
 

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

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