diff options
author | kritisingh1 <kritisingh1.ks@gmail.com> | 2019-04-20 21:19:36 +0530 |
---|---|---|
committer | kritisingh1 <kritisingh1.ks@gmail.com> | 2019-04-21 00:02:56 +0530 |
commit | fc93cb3e5d5dcf50f95cfda088124768531456f4 (patch) | |
tree | 0a91e399926c23605cc8127f727306c27dbcd940 /numpy/lib/function_base.py | |
parent | 31e71d7ce8d447cb74b9fb83875361cf7dba4579 (diff) | |
download | numpy-fc93cb3e5d5dcf50f95cfda088124768531456f4.tar.gz |
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`. |