minor plotting qol changes

This commit is contained in:
alexmadison 2022-02-23 14:59:56 +01:00
parent 3405e471d1
commit 97f7489100
1 changed files with 1 additions and 1 deletions

View File

@ -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