#matrix-operations #basic #operate

matrix_lib

easy to use library to operate on matrices

4 releases (2 breaking)

0.7.1 Sep 8, 2024
0.6.1 Jun 29, 2023

#526 in Math

Download history 140/week @ 2024-07-26 12/week @ 2024-08-02 236/week @ 2024-09-06 64/week @ 2024-09-13 42/week @ 2024-09-20 21/week @ 2024-09-27 2/week @ 2024-10-04 1/week @ 2024-10-11

841 downloads per month

GPL-3.0 license

31KB
721 lines

matrix_lib

A library implementing the matrices and basic operations on them

Want to contribute?:

My github:

github

Project:

github

Support:

https://www.buymeacoffee.com/WhiskyAKM





Macors

let m1 = matrix![
        vec![1,2,3], 
        vec![1,2,3],
        vec![1,2,3]
    ];

// this macro uses ',' to separate columns and ';' to separate rows
let m2 = matrix![
        1, 2, 3; 
        4, 5, 6; 
        7, 8, 9
    ];

// this macro is equivalent to matrix
// 1 2 3 
// 4 5 6 
// 7 8 9
// it splits the vector by length provided after "=>" operator
let vector = vec![1, 2, 3, 4, 5, 6, 7, 8, 9];
let m3 = matrix![vector => 3];

Dependencies

~465KB