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
fn func(&self, x: Matrix<f64>) -> Vector<f64>
Compute the mean function applied elementwise to a matrix.
Implementors
impl MeanFunc for ConstMean