Releases: Firionus/FastRunningMedian.jl
Releases · Firionus/FastRunningMedian.jl
v0.3.0
FastRunningMedian v0.3.0
There were breaking changes to the stateful API. Here is a quick overview of how to upgrade:
mf = MedianFilter(1, 3)
->mf = MedianFilter(Int64, 3); grow!(mf, 1)
window_size(mf)
->window_length(mf)
grow!
,shrink!
androll!
now return the median filter instead of nothing. This might cause unintended problems in some cases but aligns the API with other modifying methods in Julia base.
For details see the README file.
Closed issues:
v0.2.1
FastRunningMedian v0.2.1
v0.2.0
FastRunningMedian v0.2.0
Closed issues:
- Don't return updated median from stateful API (#3)
- Move Tapering Examples to Open Format and Make Public (#4)
- Make Tests Deterministic (#5)
- Move how_to_huild_docs to Markdown and Improve Formatting (#7)
- Add Aqua.jl (#8)
- Update Dependencies in Main and Test (#9)
- Add Test Cases for OffsetArrays (#11)
- Remove Manifest.toml (#12)
- Reduce Code Duplication for Different Taperings (#13)
- Re-run Benchmarks (#15)
- Update Dependencies (#16)
Merged pull requests:
- Allow using AbstractVectors{T} rather than Array{T, 1} only (#10) (@artemsolod)
- Test added for @view of array (#14) (@artemsolod)