Releases: halleysfifthinc/Peaks.jl
Releases · halleysfifthinc/Peaks.jl
v0.3.1
Peaks v0.3.1
New features:
- Docs page @ https://halleysfifthinc.github.io/Peaks.jl/stable/
- Find peak widths with
peakwidths
- Find the next extrema from (or at) index
i
withfindnextmaxima
/findnextminima
maxprom
keyword argument for filtering prominences added topeakproms
- In-place modifying functions
peakproms!
andpeakwidths!
for filtering peaks by min/max prominence and/or width
Deprecations:
peakprom
is nowpeakproms
peakprom(Maxima(), x)
is deprecated; new syntax requires peaks to be given as first argument, e.g.peakprom(argmaxima(x), x)
strictbounds
is renamed tostrict
to accommodate its broader functional definition among the functions which accept it
v0.3.0
Peaks v0.3.0
Closed issues:
- peakprom can't find a peak within the minimum distance
w
of the boundary (#9)
Merged pull requests:
- Peakprom bugfixes and API changes/improvements (#13) (@halleysfifthinc)
- Rename min/maxima functions and deprecate old names (#14) (@halleysfifthinc)
v0.2.2
Peaks v0.2.2
Merged pull requests:
- Some bug fixes for the minima/maxima function (#10) (@apbraun)
- Turn off patch coverage (#12) (@halleysfifthinc)
v0.2.1
Peaks v0.2.1
v0.2.0
Peaks v0.2.0
Closed issues:
Merged pull requests:
- maxima/minima of a constant value array has no peaks (#5) (@halleysfifthinc)
- Update CI and coverage configs (#6) (@halleysfifthinc)
- Limit Travis triggers for branches to master and tagged versions (#7) (@halleysfifthinc)
Add peak prominence function
A peak prominence function similar to the findpeaks
function in MATLAB has been added.
Initial release
This release only has the most basic peak finding algorithms, local minima and maxima. More options are in the works.