Added nba history example, and implemented kernel matern32.

This commit is contained in:
2020-02-21 11:20:03 +01:00
parent e7a2679941
commit eae717b840
4 changed files with 174 additions and 2 deletions

View File

@@ -2,10 +2,12 @@ use ndarray::prelude::*;
mod constant;
mod exponential;
mod matern32;
mod matern52;
pub use constant::Constant;
pub use exponential::Exponential;
pub use matern32::Matern32;
pub use matern52::Matern52;
pub trait Kernel {