|
||
---|---|---|
.idea | ||
src | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
README.md | ||
matrix-math.iml |
README.md
Math Matrix in Rust
This project is a CLI (Command Line Interface) you can use to do math operations with matrices.
The following math operations are implemented:
- add
- multiply
- determinant
Build project
To build this project you need rust & cargo installed.
If you just want to use this CLI, you can download the binary!
You can download rust & cargo from here rust-lang.org
run cargo run
to start the program in dev mode
run cargo build
or cargo build --release
to build this project
CLI commands
As you will see in the help command, these are all commands.
- create (Creates a new matrix from your input)
- add (Adds two matrices)
- multi (Multiples to matrices)
- deter (Calculates the determinant for a matrix)
- help (Prints this help page)
- exit (Quits the program)
Next steps
I want to implement an update checker and some new features.
One of them is to add the result of an operation to the other matrices.
I'm also thinking about persistent saving of the matrices.
- Update checker
- Store results
- Save matrices in file
- Premium subscription - just kidding ;-)