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
12
13
mod vec_impl;
mod vec_ops;

pub enum Axis {
    Column,
    Row,
}

#[derive(Debug, PartialEq, Eq, Hash)]
pub struct Vector<T> {
    data: Vec<T>,
    size: usize,
}