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

pub struct GaussNewton { /* fields omitted */ }

Gauss-Newton method

Example

References:

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

Methods

impl GaussNewton[src]

pub fn new() -> Self[src]

Constructor

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

set gamma

Trait Implementations

impl Default for GaussNewton[src]

impl<O> Solver<O> for GaussNewton where
    O: ArgminOp,
    O::Param: Default + ArgminScaledSub<O::Param, f64, O::Param> + ArgminSub<O::Param, O::Param> + ArgminMul<f64, O::Param>,
    O::Output: ArgminNorm<f64>,
    O::Jacobian: ArgminTranspose + ArgminInv<O::Jacobian> + ArgminDot<O::Jacobian, O::Jacobian> + ArgminDot<O::Output, O::Param> + ArgminDot<O::Param, O::Param>,
    O::Hessian: Default
[src]

fn init(
    &mut self,
    _op: &mut OpWrapper<O>,
    _state: &IterState<O>
) -> Result<Option<ArgminIterData<O>>, Error>
[src]

Initializes the algorithm Read more

fn terminate_internal(&mut self, state: &IterState<O>) -> TerminationReason[src]

Checks whether basic termination reasons apply. Read more

impl Serialize for GaussNewton[src]

impl<'de> Deserialize<'de> for GaussNewton[src]

Auto Trait Implementations

impl Send for GaussNewton

impl Sync for GaussNewton

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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

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