Struct argmin::solver::landweber::Landweber[][src]

pub struct Landweber<F> { /* fields omitted */ }

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)

Example

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

impl<F> Landweber<F>[src]

pub fn new(omega: F) -> Self[src]

Constructor

Trait Implementations

impl<F: Clone> Clone for Landweber<F>[src]

impl<'de, F> Deserialize<'de> for Landweber<F> where
    F: Deserialize<'de>, 
[src]

impl<F> Serialize for Landweber<F> where
    F: Serialize
[src]

impl<O, F> Solver<O> for Landweber<F> where
    O: ArgminOp<Float = F>,
    O::Param: ArgminScaledSub<O::Param, O::Float, O::Param>,
    F: ArgminFloat
[src]

Auto Trait Implementations

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,