You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This package is mainly not intended to be used directly.
13
13
Instead, developers of packages that implement FFTs (such as [FFTW.jl](https://github.com/JuliaMath/FFTW.jl) or [FastTransforms.jl](https://github.com/JuliaApproximation/FastTransforms.jl))
@@ -36,5 +36,6 @@ To define a new FFT implementation in your own module, you should
36
36
37
37
* You can also define similar methods of `plan_rfft` and `plan_brfft` for real-input FFTs.
38
38
39
-
The normalization convention for your FFT should be that it computes yₖ = ∑ⱼ xⱼ exp(-2πi jk/n) for a transform of
40
-
length n, and the "backwards" (unnormalized inverse) transform computes the same thing but with exp(+2πi jk/n).
39
+
The normalization convention for your FFT should be that it computes $y_k = \sum_j \exp\(-2 \pi i \cdot \frac{j k}{n}\)$
40
+
for a transform of length $n$, and the "backwards" (unnormalized inverse) transform computes the same thing but with
0 commit comments