Metadata-Version: 2.1
Name: OpenMEASURE
Version: 0.0.12
Summary: Python package for soft sensing applications
Home-page: https://github.com/albertoprocacci/OpenMEASURE
Author: Alberto Procacci
Author-email: alberto.procacci@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# OpenMEASURE

OpenMEASURE is an open source software for soft sensing applications.

## Installation

Run the following command to install:

```python
pip install OpenMEASURE
```

## Usage

```python
from sparse_sensing import SPR
import numpy as np

X = np.random.rand(16,5)
n_features = 4

# create Sparse Placement for Reconstrucion instance
spr = SPR(X, n_features)

# calculate the optimal measurement matrix
C = spr.optimal_placement()
```




