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

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

Provided methods

fn eval(&self, _x: &Vector<T>) -> Vector<T>

fn jacobian(&self, _x: &Vector<T>) -> Matrix<T>

fn hessian(&self, _x: &Vector<T>) -> Matrix<T>

Computes the Hessian at the given value x

Loading content...

Implementors

Loading content...