ndarray_numtest/
lib.rs

1//! This is utility crate for testing crates using rust-ndarray
2//!
3//! Contents
4//! ----------
5//! - [assertions](assert/index.html)
6//! - [distributions for real/complex numbers](random/index.html)
7
8extern crate rand;
9extern crate ndarray;
10extern crate ndarray_rand;
11extern crate float_cmp;
12extern crate num_complex;
13
14pub mod prelude;
15pub mod assert;
16pub mod random;
17pub mod random_init;