From 97f7489100e6af280ffc3c2bd3c3bc419f648bf8 Mon Sep 17 00:00:00 2001 From: alexmadison Date: Wed, 23 Feb 2022 14:59:56 +0100 Subject: [PATCH] minor plotting qol changes --- test/prsim_plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/prsim_plot.py b/test/prsim_plot.py index 525dde8..bc412c9 100755 --- a/test/prsim_plot.py +++ b/test/prsim_plot.py @@ -108,7 +108,7 @@ Use -exclude='regex' to specify signals to exclude (or -ex).""") colour_high = (252, 186, 3) colour_low = (20, 184, 186) - fig = plt.figure(figsize = (num_sigs/3,num_times/3)) + fig = plt.figure(figsize = (num_sigs/3+4,num_times/3+4), dpi = 100) image = np.zeros((num_sigs, num_times, 3), dtype = int) image[signals_matrix == 0] = colour_undefined