From b959d8b2990823aff171248e0f0266412e78742f Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Tue, 26 Aug 2014 17:30:48 +0300 Subject: [PATCH] recv: constellation should use '.' (instead of '.:') --- amodem/recv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amodem/recv.py b/amodem/recv.py index 83804bc..0602694 100644 --- a/amodem/recv.py +++ b/amodem/recv.py @@ -280,7 +280,7 @@ def main(args): def constellation(y, symbols, title): theta = np.linspace(0, 2*np.pi, 1000) y = np.array(y) - pylab.plot(y.real, y.imag, '.:') + pylab.plot(y.real, y.imag, '.') pylab.plot(np.cos(theta), np.sin(theta), ':') points = np.array(symbols) pylab.plot(points.real, points.imag, '+')