mat-rs 0.1.0

no_std implementation of mathematical matrix types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![warn(clippy::pedantic)]
#![allow(clippy::redundant_closure_for_method_calls)]
#![allow(clippy::module_name_repetitions)]
#![allow(clippy::missing_panics_doc)]
#![no_std]
pub mod dmat;
pub mod mat;

//no_std f64 abs, helper function used in both Mat and Dmat
fn f64_abs(x: f64) -> f64 {
    f64::from_bits(x.to_bits() & (i64::MAX as u64))
}