diff options
author | Max Kellermeier <max.kellermeier@hotmail.de> | 2020-09-11 17:57:30 +0200 |
---|---|---|
committer | Max Kellermeier <max.kellermeier@hotmail.de> | 2020-09-11 17:57:30 +0200 |
commit | dbb347295ac7414818ab5068abe31dc19a63563c (patch) | |
tree | b21873a5e6287987152c45206f9b31ab86605afb /numpy/lib/function_base.py | |
parent | d31cc73b3e8772550d551931a8b0a5d8f3aae9c9 (diff) | |
download | numpy-dbb347295ac7414818ab5068abe31dc19a63563c.tar.gz |
fix CI fails by blank lines
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index ebfba1af1..d6dc7e5b9 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -1516,14 +1516,17 @@ def unwrap(p, discont=None, axis=-1, *, period=2*pi): ------- out : ndarray Output array. + See Also -------- rad2deg, deg2rad + Notes ----- If the discontinuity in `p` is smaller than ``period/2``, but larger than `discont`, no unwrapping is done because taking the complement would only make the discontinuity larger. + Examples -------- >>> phase = np.linspace(0, np.pi, num=5) |