Metadata-Version: 2.4
Name: yassin-matrix
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

# yassin-matrix

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

## Example

```python
from yassin_matrix import martices_multiplication

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

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