Multiple FFTs of segmented Signal with overlapping
조회 수: 14 (최근 30일)
이전 댓글 표시
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?
댓글 수: 0
답변 (1개)
Samatha Aleti
2019년 7월 25일
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
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Fourier Analysis and Filtering에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!