simp_linalg 0.1.1

A light-weight library for simple operations on mathematical vectors and matrices.
Documentation
1
2
3
4
5
6
7
8
/// Module hosting the [Vector][crate::vector::Vector] type and its implementations
pub mod vector;

/// Module hosting the [Matrix][crate::matrix::Matrix] type and its implementations
pub mod matrix;

/// Imports the [Vector][crate::vector::Vector] and [Matrix][crate::matrix::Matrix] types.
pub mod prelude;