Compare commits

...

2 Commits

Author SHA1 Message Date
alexmadison
68fea3633e Merge branch 'dev' of ssh://git.web.rug.nl:222/bics/actlib_dataflow_neuro into dev 2022-02-23 14:59:58 +01:00
alexmadison
97f7489100 minor plotting qol changes 2022-02-23 14:59:56 +01:00

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