Metadata-Version: 2.4
Name: mxcalc
Version: 0.1.0
Summary: A matix calculator which performs matrix operations
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# matrix calculator
this is a matrix calculator, where you input matrices and perform the selected operation

## operations 
- addition (any amount of matrices)
- substraction (any amount of matrices)
- multiplication (2 matrices)

## how to use
- when you run `main.py` file, it will first ask you for a operation, select the operation you wish to perform
- then you can provide the information the systems ask about the matrices, the you will get your result at the end

## improvements to make

### make this a package
currently you can only use this by running `main.py` and using the helper interfaces provided by that, i feel like making it a package would give it a much better range
(inspired by githubs workflow suggestions)

### Add more operation
this operations are wayy too common. for example i want to add,
1. transpose
2. invertion(obviously)
3. rotation
and maybe flipping ? idk, we'll see

### multiple matrix calculations
right now only additions and substraction has unlimited amount of matrices support, idk if this is even possible but if we can do this it'll be fun
