IdentityOperator¶
- class odl.operator.default_ops.IdentityOperator(*args, **kwargs)[source]¶
Bases:
ScalingOperator
Operator mapping each element to itself.
Implements:
IdentityOperator()(x) == x
- Attributes:
adjoint
Adjoint, given as scaling with the conjugate of the scalar.
domain
Set of objects on which this operator can be evaluated.
inverse
Return the inverse operator.
is_functional
True
if this operator's range is aField
.is_linear
True
if this operator is linear.range
Set in which the result of an evaluation of this operator lies.
scalar
Fixed 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