Metadata-Version: 2.1
Name: combineArrays
Version: 0.0.2
Summary: Python CFFI bindings to combine an Array of Int32 with an Array of Double
Home-page: UNKNOWN
Author: Norbert Henseler
Author-email: nhenseler@web.de
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# combineArrays
This package provides Python CFFI bindings to combine: array z of Int32 with an array r of Double and return the result in array y

## Installation
To install type:
```python
$ pip install combineArrays
```

## Usage
```python
from combineArrays import combine_arrays_v1(z, r, y, n, m)

# Parameters combine_arrays_v1
z: NumPy Array, int32
r: Numpy Array, float
y: Numpy Array, float
n: int64
m: int64


# Parameters combine_arrays_v2

# Parameters combine_arrays_v3

```

