A Rust crate for very basic matrix operations
Go to file
Sayantan Santra 4cdc29aaa1
docs: Updated README.md
2023-05-28 17:31:01 -05:00
src docs: Added a hyperlink 2023-05-28 17:25:44 -05:00
.gitignore Initial commit 2023-05-24 21:46:25 -05:00
Cargo.toml build: Bumped version to 0.5.0 2023-05-28 02:59:15 -05:00
LICENSE new: Added LICENSE 2023-05-25 20:44:46 -05:00
README.md docs: Updated README.md 2023-05-28 17:31:01 -05:00

README.md

crate.io badge

matrix-basic

A Rust crate for very basic matrix operations.

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.

I created it mostly to learn how to use generic types and traits.

Usage

Documentation is available here: docs.rs.