FFT

From TORI
Jump to: navigation, search

The Fast Fourier Transform or FFT, is the efficient algorithm for the numerical evaluation of the Discrete Fouler Tansform defined with

\(\!\!\!\!\!\!\!\!\!\!\!\!\!\!\!\!\displaystyle (1) ~ ~ ~ B_k=\sum_{m=0}^{N-1} A_m \exp\Big(-\mathrm{i} \frac{2 \pi}{N}~ k~ m\Big)\)

where \(N\) is natural number; usually, \(2^n\) for some natural \(n\);
\(A\) is the input array of length \(N\), numbered beginning from 0;
\(B\) is the output array of length \(N\), numbered beginning from 0.
In such a way, \(k\) is integer number, \(0\le k < N\).

There are many ways of evaluation of the expression (1). The trivial one would requires of order of \(N^2\) operations. The efficient way requires of order on \(N~ \log_2 N\) operations and called FFT. There are several efficient algorithms to perform the FFT [1].

One of the simplest algorithms realized in the implementation of the C++ routine fft(*complex(double), int, int) is stored in file fafo.cin. This routine is used in the implementation fafo(*complex(double), int, int) of the Fourier operator.

FFT and fafo

The routine "fafo" is used in calculations described in articles [2][3][4][5][6][7] and for plotting of some pictures in TORI.

Since year 2011, fafo.cin is available with examples. This routine seems to be simplest and the most portable among those available in the Web; it is less than one screen of code, and it seems to be compatible with various operational systems, the only C++ is required. The reason of use of the fafo.cin is not the performance (perhaps some factor of order of 0.5 can be achieved at the optimization of the CPU time), but its compactness, readability and portability; no any "installing" is necessary after the downloading.

Comparison of the self–Fourier Gaussian exponential (dotted curve) to its discrete representation \(A\) by (2), blue line (and it coincides with its Fourier transform), and its FFT by (1), red line

Operator FFT defined with (1) is often confused with the implementation of the Fourier operator; both replace the input array to the output one. But the result is not the same. The simple way to see the difference is to perform the transform of the array of values of the Gaussian exponential, let

\(\!\!\!\!\!\!\!\!\!\!\!\!\!\!\!\!\displaystyle (2) ~ ~ ~ A_k=\exp(- x_k^2/2~ )\)
\(\!\!\!\!\!\!\!\!\!\!\!\!\!\!\!\!\displaystyle (3) ~ ~ ~ x_k= (k-N/2) d\)

where \(d=\sqrt{2 \pi/N}\) is step of the equidistant grid. It is assumed that \(k\) is integer; \(0\!\le\!k\!<\!N\). The expression (2) defines the discrete analogy of the simplest self-Fourier function. With such an input array, The fafo returns almost the same array as that at the input (at least, beginning with \(N=8\); the FFT returns some set of values that are difficult to interpret in terms of the Fourier operator.

The case of the Gaussian self-Fourier function by (2) is shown at the figure at right for \(N\!=\!16\).
The dotted curve shows \(y=\exp(-x^2/2)\); this is initial exponential.
The blue segmented line shows its discrete representation by (2). This representation practically coincide with the numerical estimate for its Fourier transform
The Red curve shows the Discrete Fourier Transform, that is equivalent to equation (1).

If for the Gaussian exponential, the routine fft returns the array similar to that shown at the figure with red line, then this indicates that, perhaps, the routine works correctly and returns the approximation for the sum by equaiton (1).

The fft is used for the implementation of fafo; and it can be easy extracted from there. The algorithm of expression of fafo through the FFT is realized through the displacement of the elements of array. This can be done by various ways; the most straightforward (as simplest to understand) is realized.

Matlab and other languages

For the translation of fafo to other languages (for example, Matlab), where FFT is already implemented, there is no need to translate FFT routine. In particular, the conventional Matlabs's fft can be used "as is".

The numeric implementation of the fafo through the matlab built-in function fft can be even simplified using the built-in functions "fftshift" and "ifftshift"; For the array X, the correct call may have form [8]

ifftshift(fft(fftshift(X)))

The way of realization of these functions may be dependent of the matlab version; one can play with these functions and experimentally find the way of calling, that approximates the Fourier operator

\(\!\!\!\!\!\!\!\!\!\!\!\!\! (4) ~ ~ ~ \displaystyle \mathcal{F}(A)(x)= \frac{1}{\sqrt{2\pi}} \int_{- \infty}^{\infty} \exp( - \mathrm{i} x y) A(y) ~ \mathrm{d} y \)

See also

The following articles are related to this:

Fourier transform

References

  1. http://en.wikipedia.org/wiki/Fast_Fourier_transform
  2. http://tori.ils.uec.ac.jp/PAPERS/1997density.pdf V.V.Voitsekhovich, D.Kouznetsov, D.Kh.Morozov. Density of turbulence-induced phase dislocations. Applied Optics, 1998, v.37, No.21, p.4525-4535.
  3. http://tori.ils.uec.ac.jp/PAPERS/josa1f0.pdf D.Kouznetsov, J.V.Moloney, E.M.Wright. Efficiency of pump in the double-clad fiber amplifiers. 1. Fiber with circular symmetry. JOSA B, June 2001, V.18, No.6, p.743-749.
  4. http://tori.ils.uec.ac.jp/PAPERS/josa2f0.pdf D.Kouznetsov, J.V.Moloney. Efficiency of pump in the double-clad fiber amplifiers. 2. Broken circular symmetry. JOSA B, V.19, No.6, p.1259-1263 (2002).
  5. D.Kouznetsov, J.V.Moloney. Efficiency of pump absorption in double-clad fibers amplifiers. 3. Calculation of modes. JOSA B, V.19, No.6, p.1304-1309 (2002).
  6. http://tori.ils.uec.ac.jp/PAPERS/ieee3.pdf P.Kano, D.Kouznetsov, J.V.Moloney, M.Brio. Slab delivery of incoherent pump light to double-clad fiber amplifiers: Numerical simulations. IEEE Journal of Quantum Electronics, 2004, v.40, No.9, p.1301-1305.
  7. http://tori.ils.uec.ac.jp/PAPERS/PhysRevA_72_013617.pdf D.Kouznetsov, H.Oberst. Scattering of waves at ridged mirrors. Phys.Rev.A, v.72, 013617 (2005)
  8. http://www.mathworks.co.jp/help/techdoc/ref/fftshift.html

See also Fourier transform