From c08b0edf80534538863be73462c3f42857d415ac Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sun, 10 Aug 2014 17:31:19 +0300 Subject: [PATCH] constellation: show phase transition trails --- amodem/recv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amodem/recv.py b/amodem/recv.py index 2eaf6f7..d4d4b74 100644 --- a/amodem/recv.py +++ b/amodem/recv.py @@ -277,7 +277,7 @@ def main(args): def constellation(y, symbols, title): theta = np.linspace(0, 2*np.pi, 1000) - 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, '+')