Skip to content
Snippets Groups Projects
Commit d44929b6 authored by Alexandros Asonitis's avatar Alexandros Asonitis
Browse files

Bug fix in the plotting interface

parent 7f93fa59
No related branches found
No related tags found
No related merge requests found
......@@ -339,18 +339,18 @@ def plot_config(meas,x,y1,y2=None): #meas = 1,2,3 for transfer,output,gatediode
config_grid[5,3]=widgets.FloatText(value = 0) #max Y2-axis
config_dict = {
"x":config_grid[1,1],
"y1":config_grid[1,2],
"y2":config_grid[1,3],
"x_scale":config_grid[2,1],
"y1_scale":config_grid[2,2],
"y2_scale":config_grid[2,3],
"x_min":config_grid[3,1],
"y1_min":config_grid[3,2],
"y2_min":config_grid[3,3],
"x_max":config_grid[4,1],
"y1_max":config_grid[4,2],
"y2_max":config_grid[4,3],
"x":config_grid[2,1],
"y1":config_grid[2,2],
"y2":config_grid[2,3],
"x_scale":config_grid[3,1],
"y1_scale":config_grid[3,2],
"y2_scale":config_grid[3,3],
"x_min":config_grid[4,1],
"y1_min":config_grid[4,2],
"y2_min":config_grid[4,3],
"x_max":config_grid[5,1],
"y1_max":config_grid[5,2],
"y2_max":config_grid[5,3],
"manual":config_grid[0,:]
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment