simp_linalg 0.2.0

A generically defined, light-weight linear algebra library for simple addition and multiplication of vectors and matrices.
Documentation
1
2
3
4
5
6
7
8
9
10
/// Module hosting the [Vector][crate::vector_impl::Vector] type and its implementations.
pub mod vector_impl;

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

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

mod macros;