Is there any difference in calculation of Energy spectral density and Power spectral density using MATLAB?

9 views (last 30 days)
Power Spectral Density
PSD=PSD= real(Signal).^2 + imag(Signal).^2;
Where Signal =FFT output
How can I find Energy Spectral Density?

Accepted Answer

Image Analyst
Image Analyst on 8 Feb 2022
Wouldn't it just be the sqrt(psd)?
By the way, there is a function in the Signal Processing Toolbox to get the PSD:
PSD = pwelch(timeDomainSignal);

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!