Effacer les filtres
Effacer les filtres

how to find power spectral density of signal using fft

67 vues (au cours des 30 derniers jours)
C PRASAD
C PRASAD le 25 Août 2022
Réponse apportée : Chunru le 25 Août 2022
psd using fft

Réponses (1)

Chunru
Chunru le 25 Août 2022
You can also try other methods such as he periodogram, modified periodogram, Welch.
rng default
Fs = 1000;
t = 0:1/Fs:1-1/Fs;
x = cos(2*pi*100*t) + randn(size(t));
N = length(x);
xdft = fft(x);
xdft = xdft(1:N/2+1);
psdx = (1/(Fs*N)) * abs(xdft).^2;
psdx(2:end-1) = 2*psdx(2:end-1);
freq = 0:Fs/length(x):Fs/2;
plot(freq,10*log10(psdx))
grid on
title('Periodogram Using FFT')
xlabel('Frequency (Hz)')
ylabel('Power/Frequency (dB/Hz)')

Catégories

En savoir plus sur Parametric Spectral Estimation dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by