diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-06-16 09:20:16 -0400 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-06-16 09:20:16 -0400 |
commit | e737987b15a74b5f817e92c612cf7d510a4763cb (patch) | |
tree | e4bd3c5c2ffde6fd52fe93912d60ae1c47bacd28 | |
parent | 4d6d07e94bceaf8c77cbe1adfb9a1b1afd5280bb (diff) | |
download | qolab-e737987b15a74b5f817e92c612cf7d510a4763cb.tar.gz qolab-e737987b15a74b5f817e92c612cf7d510a4763cb.zip |
more informative message about replot
-rw-r--r-- | eitControl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eitControl.py b/eitControl.py index d0e1c2e..a84eb1d 100644 --- a/eitControl.py +++ b/eitControl.py @@ -307,7 +307,7 @@ class Experiment: stop = datetime.now() runTime = (stop-start).seconds + float((stop-start).microseconds)/1000000 - print("Replot took %s seconds to plot %s points." % (runTime, len(self.data['adc1'])) ) + print("Replot took %s seconds to plot %s points per channel." % (runTime, len(self.data['x'])) ) if __name__ == '__main__': |