jax.numpy.arctan
Warning
This page was created from a pull request (#9655).
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) –
- 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. https://personal.math.ubc.ca/~cbm/aands/page_79.htm