diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-03-31 21:38:13 -0700 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-04-07 07:24:19 -0500 |
commit | d9f4d540ef334013eb404ce91b3b446e5fc917ff (patch) | |
tree | e5b7b405f567d414b24f5acca2aae78bc27267a5 /host/tests/cal_data_iq_test.cpp | |
parent | ff17d7428be5af109a2a74f916271761505ebee7 (diff) | |
download | uhd-d9f4d540ef334013eb404ce91b3b446e5fc917ff.tar.gz uhd-d9f4d540ef334013eb404ce91b3b446e5fc917ff.tar.bz2 uhd-d9f4d540ef334013eb404ce91b3b446e5fc917ff.zip |
uhd: math: Add interpolation.hpp
- Moves linear_interp from cal to utils
- Moves the interp_mode enum class to interpolation.hpp
- Adds three interpolation methods for maps: at_interpolate_1d(),
at_nearest(), at_lin_interp()
- Adds unit tests
Diffstat (limited to 'host/tests/cal_data_iq_test.cpp')
-rw-r--r-- | host/tests/cal_data_iq_test.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/host/tests/cal_data_iq_test.cpp b/host/tests/cal_data_iq_test.cpp index 97b35a331..523a4310e 100644 --- a/host/tests/cal_data_iq_test.cpp +++ b/host/tests/cal_data_iq_test.cpp @@ -10,6 +10,7 @@ #include <iostream> using namespace uhd::usrp::cal; +using namespace uhd::math; BOOST_AUTO_TEST_CASE(test_iq_cal_api) { |