1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#![crate_type = "lib"]
#![crate_name = "algebloat"]
#![cfg_attr(test, feature(test))]
#[macro_use]
extern crate algebloat_macros;
#[cfg(test)]
extern crate chrono;
pub use matrix::*;
pub use traits::*;
pub use bin_ops::*;
pub use un_ops::*;
pub use un_funs::*;
pub use bin_funs::*;
pub use reductions::*;
pub mod matrix;
pub mod bin_funs;
pub mod traits;
pub mod transpose;
pub mod view;
pub mod row_accessor;
pub mod column_accessor;
pub mod elements;
pub mod hstack;
pub mod matrix_mul;
pub mod bin_ops;
pub mod scalar;
pub mod index;
pub mod un_ops;
pub mod un_funs;
pub mod vstack;
pub mod reductions;
pub mod reshape;
pub mod slice;
#[cfg(test)]
mod test;