diff options
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`. |