diff options
| author | J08nY | 2018-03-21 20:35:19 +0100 |
|---|---|---|
| committer | J08nY | 2018-03-21 20:35:19 +0100 |
| commit | 08088e5563f602eb87fb3ef90770df9cc2faa282 (patch) | |
| tree | f144a8ca40616376ec6e0bfd91982a9095377cff | |
| parent | 90930b191281120882943b0877703df028053b1d (diff) | |
| download | ECTester-08088e5563f602eb87fb3ef90770df9cc2faa282.tar.gz ECTester-08088e5563f602eb87fb3ef90770df9cc2faa282.tar.zst ECTester-08088e5563f602eb87fb3ef90770df9cc2faa282.zip | |
| -rwxr-xr-x | util/plot_dh.py | 2 | ||||
| -rwxr-xr-x | util/plot_gen.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/util/plot_dh.py b/util/plot_dh.py index 81bf441..327e28a 100755 --- a/util/plot_dh.py +++ b/util/plot_dh.py @@ -37,7 +37,7 @@ if __name__ == "__main__": if "nano" in header_names[1]: unit = r"$\mu s$" - time_data = map(lambda x: x[1]/1000, data) + time_data = map(lambda x: x[1]//1000, data) else: unit = r"ms" time_data = map(itemgetter(1), data) diff --git a/util/plot_gen.py b/util/plot_gen.py index b96382d..2ae03ef 100755 --- a/util/plot_gen.py +++ b/util/plot_gen.py @@ -48,7 +48,7 @@ if __name__ == "__main__": if "nano" in header_names[1]: unit = r"$\mu s$" - time_data = map(lambda x: x[1]/1000, data) + time_data = map(lambda x: x[1]//1000, data) else: unit = r"ms" time_data = map(itemgetter(1), data) |
