1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
FAST FOURIER TRANSFORMS
To load the routines do LOADFILE(FFT,FASL,DSK,SHARE);
The basic functions are:
FFT --> fast fourier transform
IFT --> inverse fast fourier transform
These functions perform a (complex) fast fourier transform on either
1 or 2 dimensional FLOATING-POINT arrays, obtained by:
ARRAY(<ary>,FLOAT,<dim1>); or ARRAY(<ary>,FLOAT,<dim1>,<dim2>);
For 1D arrays <dim1> must equal 2^n-1, and for 2D arrays
<dim1>=<dim2>=2^n-1 (i.e. the array is square). (Recall that
MACSYMA arrays are indexed from a 0 origin so that there will be
2^n and (2^n)^2 arrays elements in the above two cases.)
Calling sequence is:
FFT(<real-array>,<imag-array>); or IFT(<real-array>,<imag-array>);
The real and imaginary arrays must of course be the same size.
The transforms are done in place so that <real-array> and <imag-
array> will contain the real and imaginary parts of the transform.
(If you want to keep the transformed and un-transfromed arrays
separate copy the arrays before calling FFT or IFT using the
FILLARRAY function - see SHARE;ARRAY USAGE.)
The definitions of the Fast Fourier Transform and its inverse
are given here. Here A is the array to be transformed and AT is
its transform. Both A and AT are complex arrays, although as noted
above FFT and IFT can only deal with separate real arrays for
the real and imaginary parts of A and AT. N (or N^2) is the number
of elements in A in the 1D (or 2D) case. (In fact these definitions
are not of the FFTs but of the discrete Fourier transforms. The
FFT and IFT functions merely provided efficient algorithms for the
implementation of these definitions.)
1D case:
N - 1
==== - 1
\ 2 %I %PI I K N
AT = > A %E
K / I
====
I = 0
N - 1
==== - 1
- 1 \ - 2 %I %PI I K N
A = N > AT %E
I / K
====
K = 0
2D case:
N - 1 N - 1
==== ==== - 1
\ \ 2 %I %PI (I K + J L) N
AT = > > A %E
K, L / / I, J
==== ====
I = 0 J = 0
N - 1 N - 1
==== ==== - 1
- 2 \ \ - 2 %I %PI (I K + J L) N
A = N > > AT %E
I, J / / K, L
==== ====
K = 0 L = 0
Other functions included in this file are:
POLARTORECT(<magnitude-array>,<phase-array>);
converts from magnitude/phase form into real/imaginary form
putting the real part in the magnitude array and the imaginary part
into the phase array. (<real>=<magnitude>*COS(<phase>)
and <imaginary>=<magnitude>*SIN(<phase>).)
RECTTOPOLAR(<real-array>,<imag-array>);
undoes POLARTORECT. The phase is given in the range
from -%PI to %PI.
Like FFT and IFT these function accept 1 or 2 dimensional
arrays. However, the array dimensions need not be a power of 2,
nor need the 2D arrays be square.
(The above 4 functions return a list of their arguments)
EXAMPLE - do LOADFILE(FFT,FASL,DSK,SHARE); DEMO(FFT,DEMO,DSK,SHARE);
DISCLAIMER - I didn't write these routines, but copied them from
AI:LIBDOC;FFT BWOOD1. However you can report bugs to me.
CFFK@MC
GJC@MIT-MC 05/15/81 20:40:29 Re: FFT
To: JPLJMR at MIT-MC, (FILE [SHARE;FFT MAIL]) at MIT-MC
The FFT you get by doing LOAD("FFT") is the natural complex one:
N - 1
==== - 1
\ 2 %I %PI I K N
T = > A %E
K / I
====
I = 0
So if you do FFT(A_REAL,A_IMAG); what you get back is the
coefficients of an exponential series which is the inverse
transform:
N - 1
==== - 1
- 1 \ - 2 %I %PI I K N
A = N > T %E
I / K
====
K = 0
Your question: "What do you do if all you have is a real function,
and what you want is the coefficients of the SIN and COS terms?"
A simple way is to put the function in A_REAL, and set A_IMAG to
all zeros. Then FFT. Using the exponential formula for SIN and
COS you get that (T[K]-T[-K])/2 gives the SIN term, and
(T[K]+T[-K])/2 gives the COS term.
A clever way starts out by putting the odd part of the function in A_REAL,
and the even part in A_IMAG.
Say you do FFT(REAL,IMAG); then:
COSTERM[J]:(REAL[J]+REAL[N-J])/2;
SINTERM[J]:(IMAG[J]-IMAG[N-J])/2;
Now, there is this question about the factor N^(-1), which
some people write as SQRT(2*%PI*N)^(-1).
All I can suggest is that you take the above formuli and use
macsyma to carefully check that what you want to do is
represented correctly. Using the PLOT2 package can also help in
debugging.
-gjc
|