From 7294422ba76390b65a48f4c5440851bb7e9fcc61 Mon Sep 17 00:00:00 2001 From: Eric Kooistra <kooistra@astron.nl> Date: Mon, 26 Sep 2022 11:46:14 +0200 Subject: [PATCH] Correct name. --- libraries/base/common/python/try_round.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/base/common/python/try_round.py b/libraries/base/common/python/try_round.py index 9748ae0250..7de2e47c1f 100755 --- a/libraries/base/common/python/try_round.py +++ b/libraries/base/common/python/try_round.py @@ -35,10 +35,10 @@ import matplotlib matplotlib.use('tkagg') # to make X11 forwarding work import matplotlib.pylab as plt -"""Try histogram +"""Try rounding Usage: -> python try_histogram.py -h +> python try_round.py -h """ @@ -50,7 +50,7 @@ import common as cm figNr = 1 # Parse arguments to derive user parameters -_parser = argparse.ArgumentParser('try_histogram') +_parser = argparse.ArgumentParser('try_round') _parser.add_argument('-N', default=1024, type=int, help='Number of points of FFT') _parser.add_argument('-w', default=8, type=int, help='Total number of bits') _parser.add_argument('-f', default=0, type=int, help='Number of bits of fraction that gets rounded') -- GitLab