Struct argmin::solver::gaussnewton::gaussnewton_linesearch::GaussNewtonLS[][src]

pub struct GaussNewtonLS<L, F> { /* fields omitted */ }

Gauss-Newton method with linesearch

Example

References:

[0] Jorge Nocedal and Stephen J. Wright (2006). Numerical Optimization. Springer. ISBN 0-387-30303-0.

Implementations

impl<L, F: ArgminFloat> GaussNewtonLS<L, F>[src]

pub fn new(linesearch: L) -> Self[src]

Constructor

pub fn with_tol(self, tol: F) -> Result<Self, Error>[src]

Set tolerance for the stopping criterion based on cost difference

Trait Implementations

impl<L: Clone, F: Clone> Clone for GaussNewtonLS<L, F>[src]

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

impl<L, F> Serialize for GaussNewtonLS<L, F> where
    L: Serialize,
    F: Serialize
[src]

impl<O, L, F> Solver<O> for GaussNewtonLS<L, F> where
    O: ArgminOp<Float = F>,
    O::Param: Debug + ArgminScaledSub<O::Param, O::Float, O::Param> + ArgminSub<O::Param, O::Param> + ArgminMul<O::Float, O::Param>,
    O::Output: ArgminNorm<O::Float>,
    O::Jacobian: ArgminTranspose<O::Jacobian> + ArgminInv<O::Jacobian> + ArgminDot<O::Jacobian, O::Jacobian> + ArgminDot<O::Output, O::Param> + ArgminDot<O::Param, O::Param>,
    L: Clone + ArgminLineSearch<O::Param, O::Float> + Solver<OpWrapper<LineSearchOP<O>>>,
    F: ArgminFloat
[src]

Auto Trait Implementations

impl<L, F> RefUnwindSafe for GaussNewtonLS<L, F> where
    F: RefUnwindSafe,
    L: RefUnwindSafe

impl<L, F> Send for GaussNewtonLS<L, F> where
    F: Send,
    L: Send

impl<L, F> Sync for GaussNewtonLS<L, F> where
    F: Sync,
    L: Sync

impl<L, F> Unpin for GaussNewtonLS<L, F> where
    F: Unpin,
    L: Unpin

impl<L, F> UnwindSafe for GaussNewtonLS<L, F> where
    F: UnwindSafe,
    L: 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>,