필터 지우기
필터 지우기

Normalize FFT Signal of ECG data

조회 수: 5 (최근 30일)
Christopher Houk
Christopher Houk 2018년 4월 17일
댓글: dpb 2020년 5월 6일
Hi all,
I have some excel data that plots an ECG. I have the mean and performed an FFT on the data. Now I'm trying to normalize the FFT signal so I can find the magnitude and phase of each harmonic. I've looked around and have tried various ways to normalize the signal and none of my techniques seem to working. Any help would be appreciated!

답변 (1개)

dpb
dpb 2018년 4월 17일

<FFT Example> illustrates normalization of one-sided PSD to retrieve input magnitude. Is exact for noiseless signals that match the frequency binning; real world signals have noise and energy-smearing across bins that makes for messiness, but that's the basis for where the energy is in the output signal.

  댓글 수: 8
John Navarro
John Navarro 2020년 5월 6일
Very good explaination.
But what about the PSD?
Please notice the amplitude values will change as a function of the L value.
Notice when only L=3000 the PSD will shows the energy of 1 and 0.7 respectively, with other values the amplitude of the figure changes. Any recommendation about how to noralize this one?
%PSD
[SignalSpectrum,SignalFrequencies] = periodogram(S, ...
[],[],Fs);
plot(SignalFrequencies,SignalSpectrum)
title('PSD1')
dpb
dpb 2020년 5월 6일
I'm not sure otomh what the MATLAB periodogram function does internally and don't have the time to research it just at the moment, sorry.
As noted above, the normalization of PSD via FFT uses L, the length of the input signal irrespective of N, the number of elements in the FFT if augment to nextpow2(). The extra points don't have any power associated with them so they're not included in the divisor.
I would presume periodogram would act similarly, but that is a presumption, granted.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Parametric Spectral Estimation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by