JuliaDSP / Deconvolution.jl

A Julia package for deconvolution of digital signals
https://juliadsp.github.io/Deconvolution.jl/stable/
Other
48 stars 11 forks source link

1D Fermat Number Transform deconvolution #14

Open jakubwro opened 4 years ago

jakubwro commented 4 years ago

I implemented 1D case of FNT deconvolution what partially solves #2 I'll update docs if it makes sense. The biggest limitation of this method is that each element of H matrix needs to have inverse, what is hard to achieve for real data, so I'm not sure if Deconvolution.jl is good place for algorithms like this.

jakubwro commented 4 years ago

Build fails cause this PR is not merged yet https://github.com/JuliaRegistries/General/pull/7482

codecov-io commented 4 years ago

Codecov Report

Merging #14 into master will not change coverage. The diff coverage is 100%.

Impacted file tree graph

@@          Coverage Diff          @@
##           master    #14   +/-   ##
=====================================
  Coverage     100%   100%           
=====================================
  Files           3      4    +1     
  Lines          25     48   +23     
=====================================
+ Hits           25     48   +23
Impacted Files Coverage Δ
src/Deconvolution.jl 100% <ø> (ø) :arrow_up:
src/fermat.jl 100% <100%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 7af04b8...43c47b1. Read the comment docs.

jakubwro commented 4 years ago

@giordano build is green, but please do not merge yet, I need to add docs and replace fft with precise integer convolution. To do that I think I will start a new project for integer DSP algorithms.