Crate mematrica

source ·
Expand description

mematrica

An easy to use library for working with matrices

Example

extern crate mematrica;
 
use mematrica::*;

let mut matrix_2x2 = Matrix2::new(1, 2, 3, 4);
   
let double = matrix_2x2 * 2;

assert_eq!(vec![vec![2, 4], vec![6, 8]], double.get_elements());

Re-exports

Modules

Macros

Structs

Traits