IdentityOperator¶
- class odl.operator.default_ops.IdentityOperator(*args, **kwargs)[source]¶
Bases:
ScalingOperatorOperator mapping each element to itself.
Implements:
IdentityOperator()(x) == x
- Attributes:
adjointAdjoint, given as scaling with the conjugate of the scalar.
domainSet of objects on which this operator can be evaluated.
inverseReturn the inverse operator.
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.
scalarFixed scaling factor of this operator.
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)[source]¶
Initialize a new instance.
- Parameters:
- space
LinearSpace Space of elements which the operator is acting on.
- space