From BStegmaier
Discrete Fourier transform
- Data as one-dimensional table
data = Table[..];
- Number of samples and samplerate
n = Length[data];
rate = ...;
- Fourier transformation provides real frequencies
fft = Fourier[data];
nu = Position[fft, Max[fft]][[1, 1]] rate / n