diff options
Diffstat (limited to 'gr-fft/include/gnuradio/fft/window.h')
-rw-r--r-- | gr-fft/include/gnuradio/fft/window.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gr-fft/include/gnuradio/fft/window.h b/gr-fft/include/gnuradio/fft/window.h index 0ab333e175..6739f9a0bd 100644 --- a/gr-fft/include/gnuradio/fft/window.h +++ b/gr-fft/include/gnuradio/fft/window.h @@ -331,8 +331,10 @@ public: * \param type a gr::fft::win_type index for the type of window. * \param ntaps Number of coefficients in the window. * \param beta Used only for building Kaiser windows. + * \param normalize If true, return a window with unit power */ - static std::vector<float> build(win_type type, int ntaps, double beta = 6.76); + static std::vector<float> + build(win_type type, int ntaps, double beta = 6.76, const bool normalize = false); }; } /* namespace fft */ |