recv: constellation should use '.' (instead of '.:')

This commit is contained in:
Roman Zeyde
2014-08-26 17:30:48 +03:00
parent 2be07cac0a
commit b959d8b299

View File

@@ -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, '+')