You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
0 commit comments