Skip to content

Commit

Permalink
rewritten FFTW interface
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Dec 31, 2012
1 parent 3434a2e commit 7be7b57
Show file tree
Hide file tree
Showing 4 changed files with 567 additions and 197 deletions.
5 changes: 3 additions & 2 deletions base/dsp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ using Base.FFTW

export FFTW, filt, deconv, conv, conv2, xcorr, fftshift, ifftshift,
# the rest are defined imported from FFTW:
bfft, bfftn, brfft, brfftn, fft, fft2, fft3, fftn,
ifft, ifft2, ifft3, ifftn, irfft, irfftn, rfft, rfftn
fft, bfft, ifft, rfft, brfft, irfft,
plan_fft, plan_bfft, plan_ifft, plan_rfft, plan_brfft, plan_irfft,
fft!, bfft!, ifft!, plan_fft!, plan_bfft!, plan_ifft!

function filt(b,a,x)
if a[1]==0
Expand Down
22 changes: 12 additions & 10 deletions base/export.jl
Original file line number Diff line number Diff line change
Expand Up @@ -990,27 +990,29 @@ export

# signal processing
bfft,
bfftn,
bfft!,
plan_bfft,
plan_bfft!,
brfft,
brfftn,
plan_brfft,
conv,
conv2,
deconv,
fft,
fft2,
fft3,
fftn,
fft!,
plan_fft,
plan_fft!,
fftshift,
filt,
ifft,
ifft2,
ifft3,
ifftn,
ifft!,
plan_ifft,
plan_ifft!,
ifftshift,
irfft,
irfftn,
plan_irfft,
rfft,
rfftn,
plan_rfft,
xcorr,

# iteration
Expand Down
Loading

0 comments on commit 7be7b57

Please sign in to comment.