mirror of
https://github.com/SinTan1729/matrix-basic.git
synced 2024-12-26 13:58:36 -06:00
new: Added README
This commit is contained in:
parent
1007a600e7
commit
7adb10f7a7
2 changed files with 13 additions and 4 deletions
|
@ -1,13 +1,13 @@
|
||||||
[package]
|
[package]
|
||||||
name = "matrix"
|
name = "matrix-basic"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"]
|
authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"]
|
||||||
license = "GPL-3.0"
|
license = "GPL-3.0"
|
||||||
description = "A Rust crate for very basic matrix operations"
|
description = "A Rust crate for very basic matrix operations"
|
||||||
homepage = "https://github.com/SinTan1729/matrix"
|
homepage = "https://crates.io/crates/matrix-basic"
|
||||||
documentation = "https://docs.rs/matrix"
|
documentation = "https://docs.rs/matrix-basic"
|
||||||
repository = "https://github.com/SinTan1729/matrix"
|
repository = "https://github.com/SinTan1729/matrix-basic"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
keywords = ["matrix", "math"]
|
keywords = ["matrix", "math"]
|
||||||
categories = ["mathematics"]
|
categories = ["mathematics"]
|
||||||
|
|
9
README.md
Normal file
9
README.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
[![crate.io badge](https://img.shields.io/crates/d/matrix-basic)](https://crates.io/crates/matrix-basic)
|
||||||
|
# `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,
|
||||||
|
and multiplication. Additional properties might be needed for certain operations.
|
||||||
|
|
||||||
|
I created it mostly to learn using generic types and traits.
|
Loading…
Reference in a new issue