Skip to content
Snippets Groups Projects
Commit dde3b49b authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Add note on python round().

parent 67d6f57e
No related branches found
No related tags found
No related merge requests found
...@@ -40,6 +40,10 @@ import matplotlib.pylab as plt ...@@ -40,6 +40,10 @@ import matplotlib.pylab as plt
Usage: Usage:
> python try_round.py -h > python try_round.py -h
Note:
. For values exactly halfway between rounded decimal values, NumPy rounds to
the nearest even value. Thus 1.5 and 2.5 round to 2.0, -0.5 and 0.5 round
to 0.0, etc.
""" """
import argparse import argparse
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment