arctan2¶
-
odl.ufunc_ops.ufunc_ops.
arctan2
(domain=RealNumbers())¶ Element-wise arc tangent of
x1/x2
choosing the quadrant correctly.See also
Notes
This creates a
Operator
/Functional
that applies a ufunc pointwise.Examples
Create operator that acts pointwise on a
TensorSpace
>>> space = odl.rn(3) >>> op = odl.ufunc_ops.arctan2(space)