A CLI you can use to do math operations with matrices
Go to file
Michael Hainz c95d3171d9 🚑 Fixed updater 2023-03-15 09:05:39 +01:00
.idea 🎉 Initial Commit 2023-03-11 14:36:38 +01:00
src 🚑 Fixed updater 2023-03-15 09:05:39 +01:00
.gitignore 🎉 Initial Commit 2023-03-11 14:36:38 +01:00
Cargo.lock reqwest, serde 2023-03-15 09:00:06 +01:00
Cargo.toml reqwest, serde 2023-03-15 09:00:06 +01:00
README.md 📝 Created README 2023-03-14 22:14:24 +01:00
matrix-math.iml 🎉 Initial Commit 2023-03-11 14:36:38 +01:00

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.

  1. Update checker
  2. Store results
  3. Save matrices in file
  4. Premium subscription - just kidding ;-)