mrpro.operators.MultiIdentityOp
- class mrpro.operators.MultiIdentityOp(*args, **kwargs)[source]
Bases:
EndomorphOperator
The Identity Operator.
An endomorph Operator that returns multiple inputs unchanged.
- __init__(*args, **kwargs) None
Initialize internal Module state, shared by both nn.Module and ScriptModule.
- adjoint(*x: Tensor) tuple[Tensor, ...] [source]
Adjoint Identity.
- Parameters:
x – input tensor
- Return type:
the input tensor
- forward(*x: Tensor) tuple[Tensor, ...] [source]
Identity of input.
- Parameters:
x – input tensor
- Return type:
the input tensor
- property H: Self
Adjoint Identity.