pub struct Landweber<F> { /* private fields */ }
Expand description
The Landweber iteration is a solver for ill-posed linear inverse problems.
In iteration k
, the new parameter vector x_{k+1}
is calculated from the previous parameter
vector x_k
and the gradient at x_k
according to the following update rule:
x_{k+1} = x_k - omega * \nabla f(x_k)
§References
[0] Landweber, L. (1951): An iteration formula for Fredholm integral equations of the first kind. Amer. J. Math. 73, 615–624 [1] https://en.wikipedia.org/wiki/Landweber_iteration
Implementations§
Trait Implementations§
Source§impl<'de, F> Deserialize<'de> for Landweber<F>where
F: Deserialize<'de>,
impl<'de, F> Deserialize<'de> for Landweber<F>where
F: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<O, F> Solver<O> for Landweber<F>where
O: ArgminOp<Float = F>,
O::Param: ArgminScaledSub<O::Param, O::Float, O::Param>,
F: ArgminFloat,
impl<O, F> Solver<O> for Landweber<F>where
O: ArgminOp<Float = F>,
O::Param: ArgminScaledSub<O::Param, O::Float, O::Param>,
F: ArgminFloat,
Source§fn next_iter(
&mut self,
op: &mut OpWrapper<O>,
state: &IterState<O>,
) -> Result<ArgminIterData<O>, Error>
fn next_iter( &mut self, op: &mut OpWrapper<O>, state: &IterState<O>, ) -> Result<ArgminIterData<O>, Error>
Computes one iteration of the algorithm.
Source§fn init(
&mut self,
_op: &mut OpWrapper<O>,
_state: &IterState<O>,
) -> Result<Option<ArgminIterData<O>>, Error>
fn init( &mut self, _op: &mut OpWrapper<O>, _state: &IterState<O>, ) -> Result<Option<ArgminIterData<O>>, Error>
Initializes the algorithm Read more
Source§fn terminate_internal(&mut self, state: &IterState<O>) -> TerminationReason
fn terminate_internal(&mut self, state: &IterState<O>) -> TerminationReason
Checks whether basic termination reasons apply. Read more
Source§fn terminate(&mut self, _state: &IterState<O>) -> TerminationReason
fn terminate(&mut self, _state: &IterState<O>) -> TerminationReason
Checks whether the algorithm must be terminated
Auto Trait Implementations§
impl<F> Freeze for Landweber<F>where
F: Freeze,
impl<F> RefUnwindSafe for Landweber<F>where
F: RefUnwindSafe,
impl<F> Send for Landweber<F>where
F: Send,
impl<F> Sync for Landweber<F>where
F: Sync,
impl<F> Unpin for Landweber<F>where
F: Unpin,
impl<F> UnwindSafe for Landweber<F>where
F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more