diff options
author | Wirawan Purwanto <wirawan0@gmail.com> | 2017-03-01 10:24:46 -0500 |
---|---|---|
committer | Wirawan Purwanto <wirawan0@gmail.com> | 2017-03-01 10:24:46 -0500 |
commit | 63997b533673ef60cc85c14ff46b543dc7bbcfc7 (patch) | |
tree | 9eac866ae71e99ab4b834bc8b2522f93179a2ef8 /numpy/core/arrayprint.py | |
parent | 05d99c83e5774b943797f00b8618bbd6f3ce11d4 (diff) | |
download | numpy-63997b533673ef60cc85c14ff46b543dc7bbcfc7.tar.gz |
DOC: Clarifying the meaning of small values for `suppress` print option.
Diffstat (limited to 'numpy/core/arrayprint.py')
-rw-r--r-- | numpy/core/arrayprint.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/core/arrayprint.py b/numpy/core/arrayprint.py index 318ad5495..64d241fe0 100644 --- a/numpy/core/arrayprint.py +++ b/numpy/core/arrayprint.py @@ -71,6 +71,8 @@ def set_printoptions(precision=None, threshold=None, edgeitems=None, suppress : bool, optional Whether or not suppress printing of small floating point values using scientific notation (default False). + A number is "very small" if it is smaller than the current printing + precision. nanstr : str, optional String representation of floating point not-a-number (default nan). infstr : str, optional |