arctan_op¶
- class odl.ufunc_ops.ufunc_ops.arctan_op(*args, **kwargs)¶
Bases:
OperatorTrigonometric inverse tangent, element-wise.
See also
Examples
>>> import odl >>> space = odl.rn(3) >>> op = odl.ufunc_ops.arctan(space) >>> print(op([-1., 1., 2.])) [-0.78539816, 0.78539816, 1.10714872]
- Attributes:
adjointAdjoint of this operator (abstract).
domainSet of objects on which this operator can be evaluated.
inverseReturn the operator inverse.
is_functionalTrueif this operator's range is aField.is_linearTrueif this operator is linear.rangeSet in which the result of an evaluation of this operator lies.
Methods
__call__(x[, out])Return
self(x[, out, **kwargs]).derivative(point)Return the operator derivative at
point.norm([estimate])Return the operator norm of this operator.
- __init__(space)¶
Initialize an instance.
- Parameters:
- space
TensorSpace The domain of the operator.
- space