Borrar filtros
Borrar filtros

Multiple FFTs of segmented Signal with overlapping

32 visualizaciones (últimos 30 días)
K G
K G el 6 de Jul. de 2019
Respondida: Samatha Aleti el 25 de Jul. de 2019
I have a signal ( a Voltage) and i frame into segments und then peforme FFT with Overlapping, now if i want to get one FFT of all how to do that?

Respuestas (1)

Samatha Aleti
Samatha Aleti el 25 de Jul. de 2019
Hi,
To get the FFT of all the segments with a single call, you can use the “stft” (Short-time Fourier Transform) function which returns the FFT of each segment multiplied by the window function, in each column for the given vector input.
For an input signal "x", with overlap length “o”, FFT length “nfft” and unit filter gain, the FFT of each segment is given as follows:
s = stft(x,'OverlapLength',o,'FFTLength',nfft,'Window',ones(nfft,1),'Centered',false);
For more details on usage of stft, go through

Categorías

Más información sobre Fourier Analysis and Filtering en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by