[][src]Struct mathru::optimization::GaussNewton

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

Gauss-Newton method

Methods

impl<T> GaussNewton<T>[src]

pub fn new(iters: u64) -> GaussNewton<T>[src]

impl<T> GaussNewton<T> where
    T: Real
[src]

pub fn minimize<F: Jacobian<T>>(
    &self,
    func: &F,
    x_0: &Vector<T>
) -> OptimResult<Vector<T>>
[src]

Minimize function func

Arguments

  • 'func0': Function to be minimized
  • 'x_0': Initial guess for the minimum

Return

local minimum

Auto Trait Implementations

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

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

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

impl<T> UnwindSafe for GaussNewton<T> where
    T: UnwindSafe

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

Blanket Implementations

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

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

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

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

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