A lot of progress.

This commit is contained in:
2020-02-20 09:19:11 +01:00
parent fd249da405
commit 7528b3b67b
18 changed files with 2191 additions and 110 deletions

View File

@@ -33,7 +33,15 @@ impl Kernel for Constant {
array![1.0]
}
fn feedback(&self) -> Array2<f64> {
array![[0.0]]
}
fn transition(&self, t0: f64, t1: f64) -> Array2<f64> {
todo!();
array![[1.0]]
}
fn noise_cov(&self, t0: f64, t1: f64) -> Array2<f64> {
array![[0.0]]
}
}