summaryrefslogtreecommitdiff
path: root/gr-controls/python/qa_dsim.py
diff options
context:
space:
mode:
Diffstat (limited to 'gr-controls/python/qa_dsim.py')
-rwxr-xr-xgr-controls/python/qa_dsim.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/gr-controls/python/qa_dsim.py b/gr-controls/python/qa_dsim.py
index 8c0a6be4e..543dcac8a 100755
--- a/gr-controls/python/qa_dsim.py
+++ b/gr-controls/python/qa_dsim.py
@@ -48,15 +48,11 @@ class qa_dsim (gr_unittest.TestCase):
dst = gr.vector_sink_f()
self.tb.connect(src0, (sqr,0)) # src0(vector_source) -> sqr_input_0
- #self.tb.connect((sqr,0), (sqr,1)) # sqr_output_0 -> sqr_input_1
self.tb.connect(sqr,dst) # sqr_output_0 -> dst (vector_source)
self.tb.run()
result_data = dst.data()
- #print str(result_data), "Result data"
- #print str(expected_result), "expected "
-
import matplotlib.pyplot as plt
plt.plot(result_data)