How to shift the pwelch plot
Mostrar comentarios más antiguos
Hi,
I am using the pwelch function to plot signal power spectrum density. Similar to the function "fftshift", I want the first half of the spectrum swapped with second half to put the zero-frequency value in the middle. But I dont know how to do it on the pwelch. Can any one give me some suggestions?
Thanks.
Respuestas (2)
bym
el 21 de Nov. de 2011
0 votos
pwelch calculates a one sided spectrum by default, therefore, no shifting is required. You can use the option 'twosided' to get the two sided PSD
Wayne King
el 21 de Nov. de 2011
If you really want DC to be in the middle, you can do this.
Fs = 1e3;
t = 0:1/Fs:1-1/Fs;
x = cos(2*pi*100*t)+randn(size(t));
plot(psd(spectrum.welch,x,'Fs',Fs,'CenterDC',true));
Categorías
Más información sobre Spectral Estimation en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!