This commit is contained in:
2019-02-12 16:52:55 +01:00
parent 3412e33595
commit 5a05b7355e
8 changed files with 306 additions and 54 deletions

View File

@@ -323,7 +323,7 @@ class DebugPlot:
if mode&8:
self.plot_trigger_jitter()
plt.show()
plt.show(block=False)
def plot_bode(self,xy=(0,1),mode=25,db=True):
'''displays a bode plot of the data
@@ -872,6 +872,10 @@ if __name__=='__main__':
sp.gather_upload(fnRec=fn+'.npz')
dp=DebugPlot(sp);dp.plot_gather(mode=11)
print('done')
plt.show(block=False)
raw_input('press return')
#sp.plot_points(sp.points);plt.show()