Functions | |
| vec | itpp::hamming (int size) |
| Hamming window. | |
| vec | itpp::hanning (int n) |
| Hanning window. | |
| vec | itpp::hann (int n) |
| Hanning window compatible with matlab. | |
| vec | itpp::blackman (int n) |
| Blackman window. | |
| vec | itpp::triang (int n) |
| Triangular window. | |
| vec | itpp::sqrt_win (int n) |
| Square root window. | |
| vec | itpp::chebwin (int n, double at) |
| Dolph-Chebyshev window. | |
| vec itpp::blackman | ( | int | n | ) |
Blackman window.
The n size Blackman window is a vector
where the
th component is
References itpp::cos().
| vec itpp::chebwin | ( | int | n, | |
| double | at | |||
| ) |
Dolph-Chebyshev window.
The length n Dolph-Chebyshev window is a vector
whose
th transform component is given by
where T_n(x) is the order n Chebyshev polynomial of the first kind.
| n | length of the Doplh-Chebyshev window | |
| at | attenutation of side lobe (in dB) |
n Doplh-Chebyshev windowReferences itpp::acosh(), itpp::cheb(), itpp::cos(), itpp::cosh(), itpp::ifft_real(), itpp::is_even(), it_assert, itpp::linspace(), itpp::pow10(), itpp::reverse(), itpp::Vec< Num_T >::right(), itpp::sin(), and itpp::to_cvec().
| vec itpp::hamming | ( | int | size | ) |
Hamming window.
The n size Hamming window is a vector
where the
th component is
References itpp::cos().
Referenced by itpp::fir1(), and itpp::FIR_Fading_Generator::Jakes_filter().
| vec itpp::hann | ( | int | n | ) |
Hanning window compatible with matlab.
The n size Hanning window is a vector
where the
th component is
References itpp::cos().
| vec itpp::hanning | ( | int | n | ) |
Hanning window.
The n size Hanning window is a vector
where the
th component is
Observe that this function is not the same as the hann() function which is defined as in matlab.
References itpp::cos().
Referenced by itpp::spectrum().
| vec itpp::sqrt_win | ( | int | n | ) |
Square root window.
The square-root of the Triangle window. sqrt_win(n) = sqrt(triang(n))
References itpp::sqrt().
| vec itpp::triang | ( | int | n | ) |
Triangular window.
The n size triangle window is a vector
where the
th component is
for n odd and for n even
1.5.8