We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9565fcb commit f9772b0Copy full SHA for f9772b0
src/AbstractFFTs.jl
@@ -7,11 +7,18 @@ using Base.LinAlg: BlasReal
7
import Base: show, summary, size, ndims, length, eltype,
8
*, A_mul_B!, inv, \, A_ldiv_B!
9
10
-if !isdefined(Base, :DFT)
11
- export fft, ifft, bfft, fft!, ifft!, bfft!,
12
- plan_fft, plan_ifft, plan_bfft, plan_fft!, plan_ifft!, plan_bfft!,
13
- rfft, irfft, brfft, plan_rfft, plan_irfft, plan_brfft,
14
- fftshift, ifftshift
+if VERSION >= v"0.7.0-DEV.602"
+ if isdefined(Base, :DFT)
+ import Base: fft, ifft, bfft, fft!, ifft!, bfft!,
+ plan_fft, plan_ifft, plan_bfft, plan_fft!, plan_ifft!, plan_bfft!,
+ rfft, irfft, brfft, plan_rfft, plan_irfft, plan_brfft,
15
+ fftshift, ifftshift
16
+ else
17
+ export fft, ifft, bfft, fft!, ifft!, bfft!,
18
19
20
21
+ end
22
end
23
24
0 commit comments