#include <complex.hpp>
Definition at line 34 of file complex.hpp.
complex | ( | ) | [inline] |
Definition at line 40 of file complex.hpp.
Definition at line 41 of file complex.hpp.
00041 : 00042 re (get_sample (fm)), im (get_sample (fm)) {} template<typename T> inline complex (const T& x):
Definition at line 43 of file complex.hpp.
Definition at line 45 of file complex.hpp.
complex | ( | const XT & | x, | |
const YT & | y | |||
) | [inline] |
Definition at line 407 of file complex.hpp.
00407 { 00408 C RE= re, zRE= z.re; 00409 re= re * z.re - im * z.im; 00410 im= RE * z.im + im * zRE; 00411 return *this; 00412 }
Definition at line 393 of file complex.hpp.
Definition at line 379 of file complex.hpp.
Definition at line 386 of file complex.hpp.
Definition at line 415 of file complex.hpp.
Definition at line 400 of file complex.hpp.
Definition at line 648 of file complex.hpp.
References mmx::incexp2_assign().
00648 { 00649 incexp2_assign (re, shift); 00650 incexp2_assign (im, shift); 00651 return *this; 00652 }
Definition at line 655 of file complex.hpp.
References mmx::decexp2_assign().
00655 { 00656 decexp2_assign (re, shift); 00657 decexp2_assign (im, shift); 00658 return *this; 00659 }