MATLAB: What is interpolated dft

interpolated dft

Is matlab have any inbulit function for interpolated dft?

Best Answer

Yes, you just zero pad the input by providing the optional NFFT argument to fft()
If you use an NFFT value that is greater than the length of the input data, the DFT is interpolated. Instead of getting DFT coefficients at Fs/N where Fs is the sampling frequency, you get them at Fs/NFFT
Related Question