jax.numpy.arctanΒΆ
-
jax.numpy.arctan(x)ΒΆ Trigonometric inverse tangent, element-wise.
LAX-backend implementation of
arctan().Original docstring below.
The inverse of tan, so that if
y = tan(x)thenx = arctan(y).- Parameters
x (array_like) β
out (ndarray, None, or tuple of ndarray and None, optional) β A location into which the result is stored. If provided, it must have a shape that the inputs broadcast to. If not provided or None, a freshly-allocated array is returned. A tuple (possible only as a keyword argument) must have length equal to the number of outputs.
where (array_like, optional) β This condition is broadcast over the input. At locations where the condition is True, the out array will be set to the ufunc result. Elsewhere, the out array will retain its original value. Note that if an uninitialized out array is created via the default
out=None, locations within it where the condition is False will remain uninitialized.**kwargs β For other keyword-only arguments, see the ufunc docs.
- Returns
out β Out has the same shape as x. Its real part is in
[-pi/2, pi/2](arctan(+/-inf)returns+/-pi/2). This is a scalar if x is a scalar.- Return type
ndarray or scalar
References
Abramowitz, M. and Stegun, I. A., Handbook of Mathematical Functions, 10th printing, New York: Dover, 1964, pp. 79. http://www.math.sfu.ca/~cbm/aands/