Metadata-Version: 2.1
Name: square_matrix_enhanced_plotter
Version: 0.1.3
Summary: A Python package for enhanced plotting of square matrices with zoom and interaction capabilities.
Home-page: https://github.com/robertobalestri/Square-Matrix-Enhanced-Plotter-Python
Author: Roberto Balestri
Author-email: roberto.balestri2@unibo.it
Project-URL: Bug Tracker, https://github.com/robertobalestri/Square-Matrix-Enhanced-Plotter-Python
Project-URL: Source Code, https://github.com/robertobalestri/Square-Matrix-Enhanced-Plotter-Python
Keywords: matrix square matplotlib plot zoom interaction
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: matplotlib
Requires-Dist: mplcursors
Requires-Dist: numpy
Requires-Dist: PyQT5

# Square Matrix Enhanced Plotter

Square Matrix Enhanced Plotter is a Python package for interactive and enhanced visualization of square matrices. It leverages Matplotlib and mplcursors to provide zoom and interaction capabilities.

## Features

- Zoom in/out functionality for matrix visualization.
- Interactive cursors for detailed examination of matrix elements.
- Enhanced plotting capabilities for square matrices.

## Installation

You can install Square Matrix Enhanced Plotter using pip:

```bash
pip install square-matrix-enhanced-plotter
```

## Usage

Here is a simple example of how to use the Square Matrix Enhanced Plotter:

# Example square matrix
```bash
import numpy as np
import squarematrixenhancedplotter as smep

# Example Matrices
matrix = np.random.rand(9, 9)
matrix1 = np.random.rand(9, 9)

# Plot matrices side by side
smep.plot_matrices_side_by_side(*[matrix, matrix1], titles=["Example Matrix", "Example Matrix 1"])
```

# Contributing

Contributions to the Square Matrix Enhanced Plotter are welcome!
License

This project is licensed under the MIT License - see the LICENSE file for details.
