This commit is contained in:
tillraab 2019-09-11 10:55:59 +02:00
parent e4cd9a340d
commit 50f3c60b66

View File

@ -276,8 +276,8 @@ def main():
disp_eth_power = True
fig, ax = plt.subplots(n_rows, n_cols, figsize=(20/2.54, 12/2.54), facecolor='white',sharex=True, sharey=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)
ax = np.hstack(ax)
channel_handle = []
init_fig = True
@ -323,7 +323,7 @@ def main():
channel_std = list(map(lambda x : np.std(data[x::channels][:250]), channel_array))
power_channel = np.argmax(channel_std)
max = np.max(np.hstack(channel_data))
min = np.min(np.hstack(channel_data))