Metadata-Version: 2.4
Name: alumath_group12
Version: 0.1.1
Summary: A simple Python library for multiplying two matrices of any size
Author: Yassin Hagenimna
Author-email: hyassin509@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# ALU math matrices multiplication

A lightweight Python library to multiply two matrices of any compatible size.

## Example

```python
pip install alumath_group12
```

```python

from alumath_group12 import multiply_matrices

a = [[3, 2, 3], [7, 5, 6]]
b = [[9, 8], [0, 10], [1, 14]]

result = multiply_matrices(a, b)
print(result)

```
