autodiff.reverse.arctan

autodiff.reverse.arctan(x)

Return the inverse tangent of x.

Parameters
xint, float, Node
Returns
yfloat or Node

Examples

>>> ad.arctan(1)
0.7853981633974483
>>> x = ad.Node(1)
>>> ad.arctan(x)
Node(0.7853981633974483)