[][src]Trait mathru::optimization::Optim

pub trait Optim<T> where
    T: Real
{ pub fn eval(&self, _x: &Vector<T>) -> Vector<T> { ... }
pub fn jacobian(&self, _x: &Vector<T>) -> Matrix<T> { ... }
pub fn hessian(&self, _x: &Vector<T>) -> Matrix<T> { ... } }

Provided methods

pub fn eval(&self, _x: &Vector<T>) -> Vector<T>[src]

pub fn jacobian(&self, _x: &Vector<T>) -> Matrix<T>[src]

pub fn hessian(&self, _x: &Vector<T>) -> Matrix<T>[src]

Computes the Hessian at the given value x

Loading content...

Implementors

Loading content...