Metadata-Version: 2.4
Name: alumath_group12
Version: 0.1.2
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 = [
    [2, 4, 1],
    [0, 3, 5],
    [7, 1, 6]
]

b = [
    [1, 0, 2],
    [3, 5, 6],
    [4, 7, 8]
]

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

```
