mrpro.operators.models.MonoExponentialDecay
- class mrpro.operators.models.MonoExponentialDecay[source]
Bases:
SignalModel
[Tensor
,Tensor
]Signal model for mono-exponential decay.
- __call__(*args: Unpack) Tout [source]
Apply the forward operator.
For more information, see
forward
.
- forward(m0: Tensor, decay_constant: Tensor) tuple[Tensor] [source]
Apply mono-exponential signal model.
- __add__(other: Operator[Unpack, Tout]) Operator[Unpack, Tout] [source]
- __add__(other: Tensor) Operator[Unpack, tuple[Unpack]]
Operator addition.
Returns
lambda x: self(x) + other(x)
if other is a operator,lambda x: self(x) + other*x
if other is a tensor
- __matmul__(other: Operator[Unpack, tuple[Unpack]]) Operator[Unpack, Tout] [source]
Operator composition.
Returns
lambda x: self(other(x))
- __mul__(other: Tensor | complex) Operator[Unpack, Tout] [source]
Operator multiplication with tensor.
Returns
lambda x: self(x*other)