November 9, 2019
https://github.com/mstksg/emd/releases/tag/v0.2.1.0
- Add
defaultEO'
, which makes type inference nicer when usingdefaultEO
with a custom sifter.
October 30, 2019
https://github.com/mstksg/emd/releases/tag/v0.2.0.0
- Sift condition system totally revamped, allowing for custom sift conditions.
October 19, 2019
https://github.com/mstksg/emd/releases/tag/v0.1.10.0
- Sifting condition checking system has been revamped to be more flexible.
- New sift conditions added:
- Projections based on functions:
- Energy Difference function (for Energy Difference Tracking)
- Mean envelope RMS
- For the above, we can now stop sifting based on:
- Those projections reaching a certain value
- Successive values of those projections reaching a certain squared difference (Cauchy-inspired convergence)
- S-Number Criterion
- Projections based on functions:
- Add test suites
October 9, 2019
https://github.com/mstksg/emd/releases/tag/v0.1.9.0
- Breaking:
hlMags
field inHHT v n a
now containsn + 1
items, instead ofn
items. UseV.init
to regain the original behavior. - Added
hlInitPhase
field toHHTLine
, to denote the initial phase that an HHT Line starts at. - Added
hhtResidual
field toHHT
, to store the residual of the original EMD. - Add
ihht
andihhtEmd
, to invert Hilbert-Huang Transform and reconstruct the original series (or the original EMD). - Begin benchmarking
hht
andihht
.
October 4, 2019
https://github.com/mstksg/emd/releases/tag/v0.1.8.0
-
Add
meanMarginal
-
Fix
degreeOfStationarity
for divide-by-zero errors. -
Add
foldFreq
for generalized folding onHHT
, and rewrote other functions in terms of it. -
Drop support for GHC 8.2 and lower.
-
0.1.8.1: Exported
marginal
again; it was unexported by mistake.
September 24, 2019
https://github.com/mstksg/emd/releases/tag/v0.1.7.0
- Rewrite
hilbert
using the fft library, matching the matlab implementation. This means that the library now depends on fftw.
September 24, 2019
https://github.com/mstksg/emd/releases/tag/v0.1.6.0
- Add
hilbertPhase
to Numeric.HHT.
September 3, 2019
https://github.com/mstksg/emd/releases/tag/v0.1.5.1
- Remove dependency on pure-fft, using statistics instead.
August 31, 2019
https://github.com/mstksg/emd/releases/tag/v0.1.5.0
- Add
NFData
instance forEMD
,HHTLine
, andHTT
- Add
iemd
, invertingemd
.
August 20, 2018
https://github.com/mstksg/emd/releases/tag/v0.1.4.0
hhtSparseSpectrum
added to Numeric.HHT module, for an alternate sparser representation of the Hilbert Spectrum.hhtDenseSpectrum
also added to Numeric.HHT, for an alternative denser representation.expectedFrequency
added to Numeric.HHT module, to calculate weighted average of frequency contributions at each step in time.dominantFrequency
also added to Numeric.HHT to calculate strongest frequency at each step in time.
August 15, 2018
https://github.com/mstksg/emd/releases/tag/v0.1.3.0
Default
instance forSiftCondition
andEMDOpts
, as a useful alternative todefaultEO
anddefaultSC
for those who prefer it.Binary
instances forEMD
,HHT
, and related data types. These are based onBinary
instance forv a
, so the user must bring the orphan instance of their choice into scope. Not sure if this is the best way to do this.
July 27, 2018
https://github.com/mstksg/emd/releases/tag/v0.1.2.1
- BUG FIX Fixed behavior of frequency wrapping to wrap between 0 and 1, instead of 0.5, as claimed!
July 27, 2018
https://github.com/mstksg/emd/releases/tag/v0.1.2.0
- Actually implemented the Hilbert-Huang transform
- Allowed for other border handling behaviors during EMD
- Changed default stopping conditions for sifting process
- Added clamped spline end conditions.
- Removed unsized interface
- Sifting will now throw runtime exception for singular splining matrices, instead of treating the result as a residual. This might change in the future.
July 25, 2018
https://github.com/mstksg/emd/releases/tag/v0.1.1.0
- Unsized interface added.
July 25, 2018
https://github.com/mstksg/emd/releases/tag/v0.1.0.0
- Initial release