summaryrefslogtreecommitdiff
path: root/gr-fft/lib/qa_fft_shift.cc
diff options
context:
space:
mode:
authorChristoph Mayer <hcab14@gmail.com>2019-05-23 10:58:51 +0000
committerMartin Braun <martin.braun@ettus.com>2019-06-15 17:17:02 -0700
commit6996d1b7ee20fb7611068906bb64886eb5b514ef (patch)
treed121f1ba55aaea456906aca4f46c66b0be83bf6e /gr-fft/lib/qa_fft_shift.cc
parent565d133ff028b316a9d920e631df0bd38cd7bd1e (diff)
fft: Add fft_shift class
This is a generic FFT shift object. Includes C++ unit tests. The class is templated and thus works with FFTs of any type.
Diffstat (limited to 'gr-fft/lib/qa_fft_shift.cc')
-rw-r--r--gr-fft/lib/qa_fft_shift.cc62
1 files changed, 62 insertions, 0 deletions
diff --git a/gr-fft/lib/qa_fft_shift.cc b/gr-fft/lib/qa_fft_shift.cc
new file mode 100644
index 0000000000..e924af8629
--- /dev/null
+++ b/gr-fft/lib/qa_fft_shift.cc
@@ -0,0 +1,62 @@
+/* -*- c++ -*- */
+/*
+ * Copyright 2019 Free Software Foundation, Inc.
+ *
+ * This file is part of GNU Radio
+ *
+ * GNU Radio is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3, or (at your option)
+ * any later version.
+ *
+ * GNU Radio is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GNU Radio; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <gnuradio/fft/fft_shift.h>
+#include <boost/test/unit_test.hpp>
+#include <vector>
+
+namespace gr {
+namespace fft {
+
+BOOST_AUTO_TEST_CASE(t1)
+{
+ fft::fft_shift<int> s(1023);
+
+ std::vector<int> x_even{ 0, 1, 2, 3, -4, -3, -2, -1 };
+ std::vector<int> y_even{ -4, -3, -2, -1, 0, 1, 2, 3 }; // expected result
+
+ s.shift(x_even);
+ BOOST_TEST(x_even == y_even, boost::test_tools::per_element());
+
+ // two shifts should not change the result
+ s.shift(x_even);
+ s.shift(x_even);
+ BOOST_TEST(x_even == y_even, boost::test_tools::per_element());
+}
+
+BOOST_AUTO_TEST_CASE(t2)
+{
+ fft::fft_shift<int> s(7);
+
+ std::vector<int> x_odd{ 0, 1, 2, 3, -3, -2, -1 };
+ std::vector<int> y_odd{ -3, -2, -1, 0, 1, 2, 3 }; // expected result
+
+ s.shift(x_odd);
+ BOOST_TEST(x_odd == y_odd, boost::test_tools::per_element());
+}
+
+} /* namespace fft */
+} /* namespace gr */