Trait rusty_machine::learning::gp::MeanFunc [] [src]

pub trait MeanFunc {
    fn func(&self, x: Matrix<f64>) -> Vector<f64>;
}

Trait for GP mean functions.

Required Methods

Compute the mean function applied elementwise to a matrix.

Implementors