matrix-basic/README.md

13 lines
604 B
Markdown
Raw Permalink Normal View History

2023-05-25 20:52:59 -05:00
[![crate.io badge](https://img.shields.io/crates/d/matrix-basic)](https://crates.io/crates/matrix-basic)
# `matrix-basic`
2023-05-28 17:31:01 -05:00
### A Rust crate for very basic matrix operations.
2023-05-25 20:52:59 -05:00
2023-05-28 17:31:01 -05:00
This is a crate for very basic matrix operations with any type that supports addition, substraction, multiplication,
negation, has a zero defined, and implements the Copy trait. Additional properties (e.g. division, existence of one etc.)
might be needed for certain operations.
2023-05-25 20:52:59 -05:00
2023-05-25 21:13:46 -05:00
I created it mostly to learn how to use generic types and traits.
## Usage
Documentation is available here: [docs.rs](https://docs.rs/matrix-basic).