5 releases

0.1.4 Mar 15, 2024
0.1.3 May 1, 2023
0.1.2 Apr 13, 2023
0.1.1 Apr 8, 2023
0.1.0 Feb 18, 2023

#39 in No standard library

Download history 11536/week @ 2024-01-26 10925/week @ 2024-02-02 10806/week @ 2024-02-09 16121/week @ 2024-02-16 15385/week @ 2024-02-23 15691/week @ 2024-03-01 13907/week @ 2024-03-08 16220/week @ 2024-03-15 15900/week @ 2024-03-22 15640/week @ 2024-03-29 14634/week @ 2024-04-05 15297/week @ 2024-04-12 16208/week @ 2024-04-19 13473/week @ 2024-04-26 12884/week @ 2024-05-03 9783/week @ 2024-05-10

54,429 downloads per month
Used in 432 crates (via hexasphere)

MIT/Apache

82KB
2K SLoC

Const Linear Algebra

Crates.io

Do your math ahead of time and embed the result in the binary. Floating-point code is from compiler_builtins and libm via the const_soft_float crate. Uses const generics to check shape of inputs, and is no_std.

Please file an issue or make a test PR if your use case is not supported.

const START: CMatrix<2, 2> = CMatrix::new([
    [4.0, 1.0], 
    [2.0, 3.0]
]);

const ADD: CMatrix<2, 2> = CMatrix::new([
    [0.0, 6.0], 
    [0.0, 3.0]]
);

const EXPECTED: [[f64; 2]; 2] = [
    [0.6, -0.7], 
    [-0.2, 0.4]
];

const RESULT: [[f64; 2]; 2] = START
    .add(ADD)
    .pinv(f64::EPSILON)
    .finish();

for i in 0..2 {
    for j in 0..2 {
        assert!(float_equal(RESULT[i][j], EXPECTED[i][j], 1e-5));
    }
}

Dependencies

~165KB