dars 0.1.0

Data Assimilation in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#[macro_use]
extern crate procedurals;

extern crate rand;
extern crate num_complex;
extern crate ndarray;
extern crate ndarray_rand;
extern crate ndarray_linalg;
extern crate ndarray_odeint;

pub mod gaussian;
pub mod ensemble;
pub mod types;