how to calculate and plot power spectral density of a given signal
    23 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
I have signal and i want to plot it's power spectral density , What should i do? is it right if i first calculate the FFT of a signal and then get the square abs of it's value?
1 Commento
  Rahul Gulia
 il 3 Gen 2023
				Yes, I agree. We need to take the FFT to get its frequency components and then generate its absolute value plot to learn about its PSD. 
Risposta accettata
  Wayne King
    
      
 il 5 Feb 2014
        
      Modificato: Wayne King
    
      
 il 5 Feb 2014
  
      If you have the Signal Processing Toolbox, it is easiest to use periodogram().
That handles all the scaling for you.
   Fs = 1000;
    t = 0:1/Fs:1-1/Fs;
    x = cos(2*pi*100*t)+randn(size(t));
    [Pxx,F] = periodogram(x,[],length(x),Fs);
    plot(F,10*log10(Pxx))
If you do not have the Signal Processing Toolbox, the PSD is proportional to the absolute value squared of the DFT (calculated by fft())
For more information on that scaling, please see:
0 Commenti
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Parametric Spectral Estimation in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!