summaryrefslogtreecommitdiff
path: root/gr-fft
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-04-03 19:33:32 -0400
committerTom Rondeau <trondeau@vt.edu>2013-04-04 10:38:29 -0400
commitd44322fd03661c1eb6e45e3e364e81bb5131239b (patch)
tree17c068dc4081f9bbdeaeb046ca20ee53794b2e27 /gr-fft
parent9ce3e6b3f658b9273f048e1a3580be65dc08bef1 (diff)
docs: updating Doxygen categories for all blocks.
Block categories in Doxygen now match where they are in GRC's category tree.
Diffstat (limited to 'gr-fft')
-rw-r--r--gr-fft/include/fft/fft_vcc.h12
-rw-r--r--gr-fft/include/fft/fft_vfc.h8
-rw-r--r--gr-fft/include/fft/goertzel_fc.h8
3 files changed, 14 insertions, 14 deletions
diff --git a/gr-fft/include/fft/fft_vcc.h b/gr-fft/include/fft/fft_vcc.h
index cb07b166d2..2f5b5a23f0 100644
--- a/gr-fft/include/fft/fft_vcc.h
+++ b/gr-fft/include/fft/fft_vcc.h
@@ -29,6 +29,10 @@
namespace gr {
namespace fft {
+ /*!
+ * \brief Compute forward or reverse FFT. complex vector in / complex vector out.
+ * \ingroup fourier_analysis_blk
+ */
class FFT_API fft_vcc : virtual public gr_sync_block
{
public:
@@ -36,13 +40,9 @@ namespace gr {
// gr::fft::fft_vcc::sptr
typedef boost::shared_ptr<fft_vcc> sptr;
- /*!
- * \brief Compute forward or reverse FFT. complex vector in / complex vector out.
- * \ingroup dft_blk
- */
static sptr make(int fft_size, bool forward,
- const std::vector<float> &window,
- bool shift=false, int nthreads=1);
+ const std::vector<float> &window,
+ bool shift=false, int nthreads=1);
virtual void set_nthreads(int n) = 0;
diff --git a/gr-fft/include/fft/fft_vfc.h b/gr-fft/include/fft/fft_vfc.h
index ec441d66a8..89491113b6 100644
--- a/gr-fft/include/fft/fft_vfc.h
+++ b/gr-fft/include/fft/fft_vfc.h
@@ -29,6 +29,10 @@
namespace gr {
namespace fft {
+ /*!
+ * \brief Compute forward or reverse FFT. float vector in / complex vector out.
+ * \ingroup fourier_analysis_blk
+ */
class FFT_API fft_vfc : virtual public gr_sync_block
{
public:
@@ -36,10 +40,6 @@ namespace gr {
// gr::fft::fft_vfc::sptr
typedef boost::shared_ptr<fft_vfc> sptr;
- /*!
- * \brief Compute forward or reverse FFT. float vector in / complex vector out.
- * \ingroup dft_blk
- */
static sptr make(int fft_size, bool forward,
const std::vector<float> &window,
int nthreads=1);
diff --git a/gr-fft/include/fft/goertzel_fc.h b/gr-fft/include/fft/goertzel_fc.h
index 5b3c8f1c49..26b0d0d11c 100644
--- a/gr-fft/include/fft/goertzel_fc.h
+++ b/gr-fft/include/fft/goertzel_fc.h
@@ -29,6 +29,10 @@
namespace gr {
namespace fft {
+ /*!
+ * \brief Goertzel single-bin DFT calculation.
+ * \ingroup fourier_analysis_blk
+ */
class FFT_API goertzel_fc : virtual public gr_sync_decimator
{
public:
@@ -36,10 +40,6 @@ namespace gr {
// gr::fft::goertzel_fc::sptr
typedef boost::shared_ptr<goertzel_fc> sptr;
- /*!
- * \brief Goertzel single-bin DFT calculation.
- * \ingroup dft_blk
- */
static sptr make(int rate, int len, float freq);
virtual void set_freq (float freq) = 0;