compute 0.2.3

A crate for statistical computing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Vector and matrix structs and supporting functionality.

mod broadcast;
mod dot;
mod matrix;
mod vec;
mod vops;

pub use broadcast::*;
pub use dot::*;
pub use matrix::*;
pub use vec::*;
pub(crate) use vops::*;