필터 지우기
필터 지우기

Difference between spectrum of signal and amplitude of signal. Fourier Transform

조회 수: 1 (최근 30일)
Hello!
I would very much pleased by knowing the following. If you have some signal and than acting to it by fft() Fourier transform, calculate new x-axe and so on. Than we have somehow to normalize the result of our fft() procedure. In this case, as far as I know, we have two options:
1) get amplitude, by
signal_transformed = fft(original_signal)/length(original_signal);
signal_transformed =abs(signal_transformed );
and than plot and we see determined frequency and their amplitudes of the original signal
2) get power. this is square of amplitude as I was told. We can get this by:
signal_transformed = fft(original_signal);
normalized_power_spectrum = signal_transformed .*conj(signal_transformed )/(length(original_signal)*length(original_signal));
Clear, why we might need the first point. But why we should observe the second? What's the pivotal point of the act there and what is spectrum power, why we rather study that than amplitude?
Thank you!

답변 (0개)

카테고리

Help CenterFile Exchange에서 Discrete Fourier and Cosine Transforms에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by