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

Trait for GP mean functions.

Required Methods

Compute the mean function applied elementwise to a matrix.

Implementors