Skip to content

Lingxuan-Ye/matreex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

matreex

A simple matrix implementation.

Quick Start

use matreex::matrix;

let lhs = matrix![[0, 1, 2], [3, 4, 5]];
let rhs = matrix![[0, 1], [2, 3], [4, 5]];

assert_eq!(lhs * rhs, matrix![[10, 13], [28, 40]]);

FAQs

Why matreex instead of matrix?

Hmm ... Who knows? Could be a name conflict.

About

A simple matrix implementation.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages