From 4f1514accf31f4c018c393586229ca5e4114e2f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matt=C3=A9o=20Delabre?= Date: Mon, 16 Dec 2019 09:22:24 -0500 Subject: [PATCH] Add noise to plot --- plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plot.py b/plot.py index 123b616..b33be3c 100644 --- a/plot.py +++ b/plot.py @@ -34,7 +34,7 @@ constellation = model.get_constellation() util.plot_constellation( ax, constellation, model.channel, model.decoder, - grid_step=0.001, noise_samples=0 + grid_step=0.001, noise_samples=5000 ) pyplot.show()