PSCF v1.2
Complex Arithmetic

Functions

template<typename CT , typename RT >
RT Pscf::real (CT const &a)
 Return the real part of a complex number.
 
template<typename CT , typename RT >
RT Pscf::imag (CT const &a)
 Return the imaginary part of a complex number.
 
template<typename CT , typename RT >
RT Pscf::abs (CT const &a)
 Return absolute magnitude of a complex number.
 
template<typename CT , typename RT >
RT Pscf::absSq (CT const &a)
 Return square of absolute magnitude of a complex number.
 
template<typename CT >
void Pscf::conj (CT &z, CT const &a)
 Compute complex conjugate, z = a^*.
 
template<typename CT >
void Pscf::conj (CT &a)
 In-place complex conjugation of a complex number, a = a^* .
 
template<typename CT , typename RT >
void Pscf::assign (CT &z, RT const &a, RT const &b)
 Create a complex number from real and imaginary parts, z = a + ib.
 
template<typename CT , typename RT >
void Pscf::assign (CT &z, RT const &a)
 Assign a real input to a complex variable.
 
template<typename CT >
void Pscf::assign (CT &z, CT const &a)
 Assign a complex input to a complex variable, z=a.
 
template<typename CT , typename RT >
void Pscf::assign (CT &z, std::complex< RT > const &a)
 Assign a std::complex input to a complex variable, z=a.
 
template<typename CT , typename RT >
void Pscf::assign (std::complex< RT > &z, CT const &a)
 Assign a complex input to a std::complex variable, z=a.
 
template<typename CT >
void Pscf::add (CT &z, CT const &a, CT const &b)
 Addition of two complex numbers, z = a + b.
 
template<typename CT , typename RT >
void Pscf::add (CT &z, CT const &a, RT const &b)
 Addition of a complex and real number, z = a + b.
 
template<typename CT >
void Pscf::addEq (CT &a, CT const &b)
 In place addition of complex numbers, a += b.
 
template<typename CT , typename RT >
void Pscf::addEq (CT &a, RT const &b)
 In place addition of a complex and real number, a += b.
 
template<typename CT >
void Pscf::sub (CT &z, CT const &a, CT const &b)
 Subtraction of two complex numbers, z = a - b.
 
template<typename CT , typename RT >
void Pscf::sub (CT &z, CT const &a, RT const &b)
 Subtraction of a real number from a complex number, z = a - b.
 
template<typename CT >
void Pscf::subEq (CT &a, CT const &b)
 In place subtraction of two complex numbers, a -= b.
 
template<typename CT , typename RT >
void Pscf::subEq (CT &a, RT const &b)
 In place subtraction of real number from a complex number, a -= b.
 
template<typename CT , typename RT >
RT Pscf::absSqDiff (CT const &a, CT const &b)
 Return square of the absolute magnitude of a complex difference.
 
template<typename CT >
void Pscf::mul (CT &z, CT const &a, CT const &b)
 Multiplication of two complex numbers, z = a * b.
 
template<typename CT , typename RT >
void Pscf::mul (CT &z, CT const &a, RT const &b)
 Multiplication of complex and real numbers, z = a * b.
 
template<typename CT >
void Pscf::mulEq (CT &a, CT const &b)
 In place multiplication of two complex number, a *= b.
 
template<typename CT , typename RT >
void Pscf::mulEq (CT &a, RT const &b)
 In place multiplication of a complex and real number, a *= b.
 
template<typename CT >
void Pscf::square (CT &z, CT const &a)
 Compute complex square of a complex number, z = a * a.
 
template<typename CT >
void Pscf::div (CT &z, CT const &a, CT const &b)
 Division of two complex numbers, z = a / b .
 
template<typename CT , typename RT >
void Pscf::div (CT &z, CT const &a, RT const &b)
 Division of a complex number by a real number, z = a / b .
 
template<typename CT >
void Pscf::divEq (CT &a, CT const &b)
 In place division of two complex number, a /= b.
 
template<typename CT , typename RT >
void Pscf::divEq (CT &a, RT const &b)
 In place division of a complex number by a real number, a /= b.
 

Detailed Description

Declarations of function templates for complex arithmetic using an unspecified complex data type. No definition is given for the general template for any of these functions. Instances of these templates must instead be explicit specializations for specific complex number types, such those defined by the different FFT libraries used on CPU and GPU hardware.

Function Documentation

◆ real()

template<typename CT , typename RT >
RT Pscf::real ( CT const & a)

Return the real part of a complex number.

Parameters
acomplex argument (input)

Referenced by Pscf::Prdc::readBasisData().

◆ imag()

template<typename CT , typename RT >
RT Pscf::imag ( CT const & a)

Return the imaginary part of a complex number.

Parameters
acomplex argument (input)

Referenced by Pscf::Prdc::readBasisData().

◆ abs()

template<typename CT , typename RT >
RT Pscf::abs ( CT const & a)

Return absolute magnitude of a complex number.

Parameters
acomplex argument (in)

◆ absSq()

template<typename CT , typename RT >
RT Pscf::absSq ( CT const & a)

Return square of absolute magnitude of a complex number.

Parameters
acomplex argument (in)

Referenced by Pscf::absSqDiff(), and Pscf::Rpg::BinaryStructureFactorGrid< D >::sample().

◆ conj() [1/2]

template<typename CT >
void Pscf::conj ( CT & z,
CT const & a )

Compute complex conjugate, z = a^*.

Parameters
zcomplex conjugate of argument (out)
acomplex argument (in)

◆ conj() [2/2]

template<typename CT >
void Pscf::conj ( CT & a)

In-place complex conjugation of a complex number, a = a^* .

Parameters
aargument (in) and complex conjugate (out)

◆ assign() [1/5]

template<typename CT , typename RT >
void Pscf::assign ( CT & z,
RT const & a,
RT const & b )

Create a complex number from real and imaginary parts, z = a + ib.

Parameters
zcomplex (out)
areal part (in)
bimaginary part (in)

◆ assign() [2/5]

template<typename CT , typename RT >
void Pscf::assign ( CT & z,
RT const & a )

Assign a real input to a complex variable.

Parameters
zcomplex (out)
areal (in)

◆ assign() [3/5]

template<typename CT >
void Pscf::assign ( CT & z,
CT const & a )

Assign a complex input to a complex variable, z=a.

Parameters
zcomplex (out)
acomplex (in)

◆ assign() [4/5]

template<typename CT , typename RT >
void Pscf::assign ( CT & z,
std::complex< RT > const & a )

Assign a std::complex input to a complex variable, z=a.

Parameters
zcomplex (out)
astd::complex (in)

◆ assign() [5/5]

template<typename CT , typename RT >
void Pscf::assign ( std::complex< RT > & z,
CT const & a )

Assign a complex input to a std::complex variable, z=a.

Parameters
zstd::complex (out)
acomplex (in)

◆ add() [1/2]

template<typename CT >
void Pscf::add ( CT & z,
CT const & a,
CT const & b )

Addition of two complex numbers, z = a + b.

Parameters
zcomplex sum (out)
acomplex summand (in)
bcomplex summand (in)

Referenced by Pscf::Prdc::SymmetryGroup< Symmetry >::makeCompleteGroup().

◆ add() [2/2]

template<typename CT , typename RT >
void Pscf::add ( CT & z,
CT const & a,
RT const & b )

Addition of a complex and real number, z = a + b.

Parameters
zcomplex sum (out)
acomplex summand (in)
breal summand (in)

◆ addEq() [1/2]

template<typename CT >
void Pscf::addEq ( CT & a,
CT const & b )

In place addition of complex numbers, a += b.

Parameters
acomplex summand (in) and sum (out)
bcomplex summand (in)

◆ addEq() [2/2]

template<typename CT , typename RT >
void Pscf::addEq ( CT & a,
RT const & b )

In place addition of a complex and real number, a += b.

Parameters
acomplex summand (in) and sum (out)
breal summand (in)

◆ sub() [1/2]

template<typename CT >
void Pscf::sub ( CT & z,
CT const & a,
CT const & b )

Subtraction of two complex numbers, z = a - b.

Parameters
zcomplex difference (out)
acomplex 1st argument (in)
bcomplex 2nd argument (in)

Referenced by Pscf::absSqDiff(), and Pscf::absSqDiff().

◆ sub() [2/2]

template<typename CT , typename RT >
void Pscf::sub ( CT & z,
CT const & a,
RT const & b )

Subtraction of a real number from a complex number, z = a - b.

Parameters
zcomplex difference (out)
acomplex 1st argument (in)
breal 2nd argument (in)

◆ subEq() [1/2]

template<typename CT >
void Pscf::subEq ( CT & a,
CT const & b )

In place subtraction of two complex numbers, a -= b.

Parameters
acomplex argument (in) and difference (out)
bcomplex argument (in)

◆ subEq() [2/2]

template<typename CT , typename RT >
void Pscf::subEq ( CT & a,
RT const & b )

In place subtraction of real number from a complex number, a -= b.

Parameters
acomplex argument (in) and difference (out)
breal argument (in)

◆ absSqDiff()

template<typename CT , typename RT >
RT Pscf::absSqDiff ( CT const & a,
CT const & b )

Return square of the absolute magnitude of a complex difference.

This function returns |a-b|^2 for complex a and b.

Parameters
acomplex 1st argument (in)
bcomplex 2nd argument (in)

◆ mul() [1/2]

template<typename CT >
void Pscf::mul ( CT & z,
CT const & a,
CT const & b )

Multiplication of two complex numbers, z = a * b.

Parameters
zcomplex product (out)
acomplex factor (in)
bcomplex factor (in)

◆ mul() [2/2]

template<typename CT , typename RT >
void Pscf::mul ( CT & z,
CT const & a,
RT const & b )

Multiplication of complex and real numbers, z = a * b.

Parameters
zcomplex product (out)
acomplex factor (in)
breal factor (in)

◆ mulEq() [1/2]

template<typename CT >
void Pscf::mulEq ( CT & a,
CT const & b )

In place multiplication of two complex number, a *= b.

Parameters
acomplex factor (in) and product (out)
bcomplex factor (in)

◆ mulEq() [2/2]

template<typename CT , typename RT >
void Pscf::mulEq ( CT & a,
RT const & b )

In place multiplication of a complex and real number, a *= b.

Parameters
acomplex factor (in) and product (out)
breal factor (in)

◆ square()

template<typename CT >
void Pscf::square ( CT & z,
CT const & a )

Compute complex square of a complex number, z = a * a.

Parameters
zcomplex product (out)
acomplex factor (in)

◆ div() [1/2]

template<typename CT >
void Pscf::div ( CT & z,
CT const & a,
CT const & b )

Division of two complex numbers, z = a / b .

Parameters
zcomplex ratio (out)
acomplex numerator (in)
bcomplex denominator (in)

◆ div() [2/2]

template<typename CT , typename RT >
void Pscf::div ( CT & z,
CT const & a,
RT const & b )

Division of a complex number by a real number, z = a / b .

Parameters
zcomplex ratio (out)
acomplex numerator (in)
breal denominator (in)

◆ divEq() [1/2]

template<typename CT >
void Pscf::divEq ( CT & a,
CT const & b )

In place division of two complex number, a /= b.

Parameters
acomplex numerator (in) and ratio (out)
bcomplex denominator (in)

◆ divEq() [2/2]

template<typename CT , typename RT >
void Pscf::divEq ( CT & a,
RT const & b )

In place division of a complex number by a real number, a /= b.

Parameters
acomplex numerator (in) and ratio (out)
breal denominator (in)