Struct argmin::solver::gaussnewton::gaussnewton_method::GaussNewton[][src]

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

Gauss-Newton method

Example

References:

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

Implementations

impl<F: ArgminFloat> GaussNewton<F>[src]

pub fn new() -> Self[src]

Constructor

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

set gamma

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

Set tolerance for the stopping criterion based on cost difference

Trait Implementations

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

impl<F: ArgminFloat> Default for GaussNewton<F>[src]

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

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

impl<O, F> Solver<O> for GaussNewton<F> where
    O: ArgminOp<Float = F>,
    O::Param: 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>,
    F: ArgminFloat
[src]

Auto Trait Implementations

impl<F> RefUnwindSafe for GaussNewton<F> where
    F: RefUnwindSafe

impl<F> Send for GaussNewton<F> where
    F: Send

impl<F> Sync for GaussNewton<F> where
    F: Sync

impl<F> Unpin for GaussNewton<F> where
    F: Unpin

impl<F> UnwindSafe for GaussNewton<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>,