OpenCV453
|
A complex number class. [詳解]
#include <types.hpp>
公開メンバ関数 | |
Complex () | |
default constructor | |
Complex (_Tp _re, _Tp _im=0) | |
template<typename T2 > | |
operator Complex< T2 > () const | |
conversion to another data type | |
Complex | conj () const |
conjugation | |
公開変数類 | |
_Tp | re |
_Tp | im |
A complex number class.
The template class is similar and compatible with std::complex, however it provides slightly more convenient access to the real and imaginary parts using through the simple field access, as opposite to std::complex::real() and std::complex::imag().