diff options
author | Matti Picus <matti.picus@gmail.com> | 2019-04-20 22:50:59 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-20 22:50:59 +0300 |
commit | 9050e0bcba7775fcb7fec15d1d242bafc8c0ed0c (patch) | |
tree | 57fe20ffff3aeb26f6bb1f58f3b4456ba8382df7 /numpy/lib/function_base.py | |
parent | cd2e52ce9dc54b0199beba25bd5e02ce54d60963 (diff) | |
parent | fc93cb3e5d5dcf50f95cfda088124768531456f4 (diff) | |
download | numpy-9050e0bcba7775fcb7fec15d1d242bafc8c0ed0c.tar.gz |
Merge pull request #13374 from kritisingh1/angle
DOC: Specify range for numpy.angle
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index e9908d1ef..2e82fa075 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -1429,8 +1429,8 @@ def angle(z, deg=False): Returns ------- angle : ndarray or scalar - The counterclockwise angle from the positive real axis on - the complex plane, with dtype as numpy.float64. + The counterclockwise angle from the positive real axis on the complex + plane in the range ``(-pi, pi]``, with dtype as numpy.float64. ..versionchanged:: 1.16.0 This function works on subclasses of ndarray like `ma.array`. |