Clear Filters
Clear Filters

fourier transform ans amplitude

1 view (last 30 days)
Erkan
Erkan on 26 Feb 2024
Commented: Hassaan on 26 Feb 2024
Hi everyone, good work, why is the converted signal divided by sqrt(n)^2 when finding P values ​​after the Fourier transformation of the gaussian pulse on the matlab website?
Fs = 44100; % Sampling frequency
T = 1/Fs; % Sampling period
t = -0.5:T:0.5; % Time vector
L = length(t); % Signal length
X = 1/(0.4*sqrt(2*pi))*(exp(-t.^2/(2*(0.1*1e-3)^2)));
n = 2^nextpow2(L);
Y = fft(X,n);
f = Fs*(0:(n/2))/n;
P = abs(Y/sqrt(n)).^2; %???

Accepted Answer

Hassaan
Hassaan on 26 Feb 2024
Dividing by sqrt(n)^2 after performing the FFT on a Gaussian pulse or any signal in MATLAB is a normalization step to ensure that the signal's power or energy is consistently represented across the time and frequency domains, adhering to Parseval's theorem. This step is crucial for accurate signal analysis and interpretation in various scientific and engineering applications.
-----------------------------------------------------------------------------------------------------------------------------------------------------
If you find the solution helpful and it resolves your issue, it would be greatly appreciated if you could accept the answer. Also, leaving an upvote and a comment are also wonderful ways to provide feedback.
It's important to note that the advice and code are based on limited information and meant for educational purposes. Users should verify and adapt the code to their specific needs, ensuring compatibility and adherence to ethical standards.
Professional Interests
  • Technical Services and Consulting
  • Embedded Systems | Firmware Developement | Simulations
  • Electrical and Electronics Engineering
Feel free to contact me.
  2 Comments
Erkan
Erkan on 26 Feb 2024
Thank you for your answer. I will contact you with a problem I am trying to resolve.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!