Metadata-Version: 2.1
Name: damakye-matrixsolver
Version: 0.1
Summary: A Python package for solving systems of linear equations using various methods (e.g., Gaussian Elimination, LU Decomposition, Gauss-Jordan).
Home-page: https://github.com/DanielAgyekumamakyeGh/damakye_matrixsolver
Author: Daniel Agyekum Amakye
Author-email: your.janetobosuayaa@gmail.com.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENCE.txt
Requires-Dist: numpy>=1.21.0
Requires-Dist: scipy>=1.7.0

# Damakye Matrix Solver

`damakye_matrixsolver` is a Python package designed to solve systems of linear equations in the form `Ax = b`, where `A` is an n x n matrix and `b` is a vector of constants. The package offers multiple solving methods, including:

- **NumPy** (default)
- **Gaussian Elimination**
- **Row Reduction**
- **LU Decomposition**
- **Gauss-Jordan Elimination**

The package allows the user to choose the preferred solving method interactively.

## Installation

To install the package, you can clone the repository and install it via `setup.py` or use `pip` directly:

```bash
pip install git+https://github.com/yourusername/damakye_matrixsolver.git
