Skip to content

Commit

Permalink
Fixing PyPI display
Browse files Browse the repository at this point in the history
  • Loading branch information
Laszuk committed Jul 7, 2017
1 parent d371b69 commit e1393f3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ Introduction
************

This is yet another Python implementation of Empirical Mode
Decomposition (EMD). The package contains many EMD variations, like:
Decomposition (EMD). The package contains many EMD variations and intends to
deliver more in time.

EMD variations:
- Ensemble EMD (EEMD),
- Image decomposotion (EMD2D),
- different settings and configurations of vanilla EMD.
Expand Down Expand Up @@ -82,6 +85,7 @@ import ``EMD`` and pass your signal to ``emd()`` method.
.. code:: python
from PyEMD import EMD
import numpy as np
s = np.random.random(100)
emd = EMD()
Expand All @@ -100,6 +104,7 @@ Simplest case of using Esnembld EMD (EEMD) is by importing ``EEMD`` and passing
.. code:: python
from PyEMD import EEMD
import numpy as np
s = np.random.random(100)
eemd = EEMD()
Expand All @@ -113,10 +118,11 @@ Simplest case is to pass image as monochromatic numpy 2D array.
.. code:: python
from PyEMD import EMD2D
import numpy as np
x, y = np.arange(128), np.arange(128).reshape((-1,1))
img = np.sin(0.1*x)*np.cos(0.2*y)
emd2d= EMD2D()
emd2d = EMD2D()
IMFs_2D = emd2d.emd(img)
Contact
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

VERSION="0.2.01"
VERSION="0.2.2"

DESCRIPTION = "Implementation of Empirical Mode Decomposition (EMD) and its variations"

Expand Down

0 comments on commit e1393f3

Please sign in to comment.