Metadata-Version: 2.1
Name: alumathGroup26
Version: 0.1.1
Summary: A simple matrix calculator library
Home-page: https://github.com/lGikundiro/Advanced-Linear-Algebra---Formative-2
Author: Terry Manzi
Author-email: Manzi Terry <m.terry@alustudent.com>
License: MIT
Project-URL: Homepage, https://github.com/lGikundiro/Advanced-Linear-Algebra---Formative-2
Project-URL: Repository, https://github.com/lGikundiro/Advanced-Linear-Algebra---Formative-2
Keywords: matrix,mathematics,linear algebra,calculator
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# AlumathGroup26 - Matrix Calculator Library

A simple and efficient matrix calculator library for Python.

## Features

- Create and manipulate matrices
- Matrix multiplication with dimension validation
- Matrix addition and subtraction
- Matrix transpose
- Easy-to-use API

## Installation

```bash
pip install alumathGroup26
from alumath import Matrix, multiply_matrices

# Create matrices
matrix1 = Matrix([[1, 2], [3, 4]])
matrix2 = Matrix([[5, 6], [7, 8]])

# Multiply matrices
result = multiply_matrices(matrix1, matrix2)
print(result)
