changed plot to check electrodes

This commit is contained in:
tillraab 2019-09-11 11:14:09 +02:00
parent 50f3c60b66
commit 2757ca0d54

View File

@ -10,6 +10,7 @@ except:
import subprocess
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.gridspec as gridspec
from time import sleep, time
from os import system
from sys import stdout
@ -276,8 +277,17 @@ def main():
disp_eth_power = True
fig, ax = plt.subplots(n_rows, n_cols, figsize=((n_cols * 2.5)/2.54, (n_rows * 2.5)/2.54), facecolor='white',
sharex=True, sharey=True)
fig = plt.figure(figsize =(20/2.54, 12/2.54), facecolor='white')
axs = []
gs = gridspec.GridSpec(n_rows, n_cols)
for y in range(n_rows):
for x in range(n_cols):
ax = plt.subplot(gs[y, x])
axs.append(ax)
gs.update(left=0.05, bottom=0.05, top=1, right=1)
ax = np.hstack(ax)
channel_handle = []
init_fig = True
@ -329,8 +339,8 @@ def main():
min = np.min(np.hstack(channel_data))
if init_fig == True:
for ch in channel_array:
h, = ax[ch].plot(np.arange(250)[:len(channel_data[ch])] / rate, channel_data[ch], color='k')
ax[ch].set_ylim(min, max)
h, = axs[ch].plot(np.arange(250)[:len(channel_data[ch])] / rate, channel_data[ch], color='k')
axs[ch].set_ylim(min, max)
channel_handle.append(h)
plt.show(block=False)
init_fig = False