PCL
|
Functions | |
template<typename T1 , class T2 > | |
Complex< T1 > | pcl::operator* (const Complex< T1 > &c, T2 x) noexcept |
template<typename T1 , class T2 > | |
Complex< T1 > | pcl::operator* (const Complex< T1 > &c1, const Complex< T2 > &c2) noexcept |
template<typename T1 , class T2 > | |
Complex< T2 > | pcl::operator* (T1 x, const Complex< T2 > &c) noexcept |
template<typename T1 , class T2 > | |
Complex< T1 > | pcl::operator+ (const Complex< T1 > &c, T2 x) noexcept |
template<typename T1 , class T2 > | |
Complex< T1 > | pcl::operator+ (const Complex< T1 > &c1, const Complex< T2 > &c2) noexcept |
template<typename T1 , class T2 > | |
Complex< T2 > | pcl::operator+ (T1 x, const Complex< T2 > &c) noexcept |
template<typename T1 , class T2 > | |
Complex< T1 > | pcl::operator- (const Complex< T1 > &c, T2 x) noexcept |
template<typename T1 , class T2 > | |
Complex< T1 > | pcl::operator- (const Complex< T1 > &c1, const Complex< T2 > &c2) noexcept |
template<typename T1 , class T2 > | |
Complex< T2 > | pcl::operator- (T1 x, const Complex< T2 > &c) noexcept |
template<typename T1 , class T2 > | |
Complex< T1 > | pcl::operator/ (const Complex< T1 > &c, T2 x) noexcept |
template<typename T1 , class T2 > | |
Complex< T1 > | pcl::operator/ (const Complex< T1 > &c1, const Complex< T2 > &c2) noexcept |
template<typename T1 , class T2 > | |
Complex< T2 > | pcl::operator/ (T1 x, const Complex< T2 > &c) noexcept |
template<typename T > | |
Complex< T > | pcl::Pow (const Complex< T > &c1, const Complex< T > &c2) noexcept |
template<typename T1 , class T2 > | |
Complex< T1 > | pcl::Pow (const Complex< T1 > &c, T2 x) noexcept |
template<typename T1 , class T2 > | |
Complex< T2 > | pcl::Pow (T1 x, const Complex< T2 > &c) noexcept |
|
inlinenoexcept |
Complex multiplication. Returns the multiplication of a complex number c and a real x.
|
inlinenoexcept |
Complex multiplication. Returns the multiplication of a real number x and a complex c.
|
inlinenoexcept |
Complex addition. Returns the sum of a complex number c and a real x.
|
inlinenoexcept |
Complex addition. Returns the sum of a real number x and a complex c.
|
inlinenoexcept |
Complex subtraction. Returns the difference between a complex number c and a real x.
|
inlinenoexcept |
Complex subtraction. Returns the difference between a real number x and a complex c.
|
inlinenoexcept |
Complex division. Returns the division of a complex number c by a real x.
|
inlinenoexcept |
Complex division. Returns the division between two complex numbers c1 and c2.
Definition at line 592 of file Complex.h.
References pcl::Abs(), pcl::Complex< T >::Imag(), and pcl::Complex< T >::Real().
|
inlinenoexcept |
Complex division. Returns the division of a real number x and a complex c.
Definition at line 643 of file Complex.h.
References pcl::Abs(), pcl::Complex< T >::Imag(), and pcl::Complex< T >::Real().
|
inlinenoexcept |
Complex exponentiation. Returns a complex number c1 raised to a complex c2.
Definition at line 774 of file Complex.h.
References pcl::Exp(), pcl::Ln(), and pcl::Pow().
|
inlinenoexcept |
Complex exponentiation. Returns a complex number c raised to a real x.
Definition at line 747 of file Complex.h.
References pcl::Exp(), and pcl::Ln().
Referenced by pcl::PSFData::FWHM(), pcl::VariableShapeFilter::FWHMx(), pcl::PSFData::FWTM(), pcl::RGBColorSystem::LinearToSRGB(), pcl::GammaRandomDeviates< RNG >::operator()(), pcl::Pow(), and pcl::RGBColorSystem::SRGBToLinear().
|
inlinenoexcept |
Complex exponentiation. Returns a real number x raised to a complex c.
Definition at line 760 of file Complex.h.
References pcl::Exp(), pcl::Ln(), and pcl::Pow().