hebrides 0.1.46

Implementations for the real numbers, complex numbers, and basic linear algebra
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A general mathematics library.
//! 
//! `Real` and `Complex` are Rust implementations of their mathematical
//! counterparts, and `Vector` and `Matrix` form the basis of the crate's
//! linear algebra systems.

#![deny(rust_2018_idioms, missing_docs)]

pub mod elem;
pub mod linal;

pub use elem::*;
pub use linal::*;