I am using
PSD = Abs[Fourier[normedAutoValues, FourierParameters -> {-1, 1}]];
normedAutoValues contains around 200 *10^7 data points.
So it takes for ever... Is there a way to monitor the progress of Fourier[]?
I am using
PSD = Abs[Fourier[normedAutoValues, FourierParameters -> {-1, 1}]];
normedAutoValues contains around 200 *10^7 data points.
So it takes for ever... Is there a way to monitor the progress of Fourier[]?
Spectrogram, which nicely partitions the data and takes the spectra in reasonably sized chunks. If what you want is the PSD (power spectral density), as suggested by your variable name, then a single FFT is not the way to do it. You might want to considerPowerSpectralDensity. – bill s May 31 '15 at 11:46