linearalgebra 0.2.1

Test project to learn Rust and implement a small library for linear algebra
Documentation
1
2
3
4
5
6
#![cfg_attr(feature = "simd", feature(portable_simd))]

mod numlib;

pub mod vector;
pub mod matrix;