ferrix 0.1.0

A simple matrix library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[macro_use]
mod macros;

pub mod add;
pub mod add_assign;
pub mod div;
pub mod div_assign;
pub mod mul;
pub mod mul_assign;
pub mod sub;
pub mod sub_assign;

pub mod dot;
pub mod matmul;