diff options
author | Tom Rondeau | 2012-06-22 10:38:20 -0400 |
---|---|---|
committer | Tom Rondeau | 2012-06-22 10:38:20 -0400 |
commit | 31fc0ca9bb616d49f8d359054702f4625a535ea0 (patch) | |
tree | b2585cdab661e753870c11425ec4dc1cfe4b355c | |
parent | 62f7129ed20d2a5c13e3b90c399be9d6ad1cb5c8 (diff) | |
download | gnuradio-31fc0ca9bb616d49f8d359054702f4625a535ea0.tar.gz gnuradio-31fc0ca9bb616d49f8d359054702f4625a535ea0.tar.bz2 gnuradio-31fc0ca9bb616d49f8d359054702f4625a535ea0.zip |
filter: more precision for the PFB channelizer QA test.
-rwxr-xr-x | gr-filter/python/qa_pfb_channelizer.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-filter/python/qa_pfb_channelizer.py b/gr-filter/python/qa_pfb_channelizer.py index 3d35c46e4..c0ed8327d 100755 --- a/gr-filter/python/qa_pfb_channelizer.py +++ b/gr-filter/python/qa_pfb_channelizer.py @@ -70,10 +70,10 @@ class test_pfb_channelizer(gr_unittest.TestCase): # Adjusted phase rotations for data p0 = 0 - p1 = 1.6335486 - p2 = -3.01609 - p3 = 3.01609 - p4 = -1.6335486 + p1 = math.pi*0.51998885 + p2 = -math.pi*0.96002233 + p3 = math.pi*0.96002233 + p4 = -math.pi*0.51998885 # Create known data as complex sinusoids at the different baseband freqs # the different channel numbering is due to channelizer output order. |