Skip to content

Commit b0b05e1

Browse files
committed
added simple README
1 parent 05403cf commit b0b05e1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# matrix
2+
3+
Simple & extensible type-checked matrixes
4+
5+
This was made as a learning project and thrives to provide matrices generic over any type.
6+
Some basic matrix manipulation operations are implemented for the matrix assuming the concrete type implements the required traits.
7+
The main selling point is that most operations fail to compile if the operation is impossible. This is done through the use of `min_const_generic` (rustc v1.51) and allows operations such as matrix product to always work if the code compiles.
8+
9+
Although most operations implemented are done so with mathematical matrices in mind the type itself can be used for any use-case
10+
11+
For how to use this crate, refer to [`Matrix`]

0 commit comments

Comments
 (0)