From 9f5bab92304d03fc42551b003a7d7a5154b3579d Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Tue, 8 Jul 2014 08:56:37 +0300 Subject: [PATCH] show: don't set constellation plot size --- show.py | 1 - 1 file changed, 1 deletion(-) diff --git a/show.py b/show.py index 8668a95..53e7a0a 100644 --- a/show.py +++ b/show.py @@ -11,7 +11,6 @@ def constellation(y, title): pylab.plot(points.real, points.imag, 'o') pylab.grid('on') pylab.axis('equal') - pylab.axis(np.array([-1, 1, -1, 1]) * 1.1) pylab.title(title) def spectrogram(t, x, Fs, NFFT=256):