linearalgebra 0.2.1

Test project to learn Rust and implement a small library for linear algebra
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod mat_impl;
mod mat_mul;
mod mat_display;

#[derive(Debug, Clone)]
pub struct Matrix<T> {
    width: usize,
    height: usize,
    size: usize,
    data: Vec<T>
}