rsdiff-math 0.0.2

the crate provides custom mathematical operations for rsdiff
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
    Appellation: linalg <module>
    Contrib: FL03 <jo3mccain@icloud.com>
*/
//! # Linear Algebra
//!
//! This module implements fundamental linear algebra concepts and operations.
//!
pub use self::fields::*;

pub(crate) mod fields;

pub mod vs;

#[cfg(test)]
mod tests {}