0% found this document useful (0 votes)
38 views2 pages

Noisy Periodogram: Aim: To Study Periodogram Software: Matlab 2013A

This MATLAB program aims to study the periodogram by generating a noisy signal with a 0.3 Hz sinusoidal component, applying a Hamming window to the signal, taking the fast Fourier transform (FFT) of the signal, and plotting the power spectrum in decibels to observe the spectral properties. The result is that the periodogram was used to analyze the power spectrum of a noisy signal.

Uploaded by

Habeeb Ali
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
38 views2 pages

Noisy Periodogram: Aim: To Study Periodogram Software: Matlab 2013A

This MATLAB program aims to study the periodogram by generating a noisy signal with a 0.3 Hz sinusoidal component, applying a Hamming window to the signal, taking the fast Fourier transform (FFT) of the signal, and plotting the power spectrum in decibels to observe the spectral properties. The result is that the periodogram was used to analyze the power spectrum of a noisy signal.

Uploaded by

Habeeb Ali
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

1

Noisy Periodogram
AIM : TO STUDY PERIODOGRAM
SOFTWARE : MATLAB 2013a
PROGRAM
n=0:256;
N=length(n);
w=window(@hamming,N);%@rectwin,@hann,@barlett
x=sin(2*pi*0.3*n).*w'+0.5*randn(1,N);
Sx=abs(fft(x,1024)).^2;
Sxn=Sx/N;
plot(20*log10(Sxn)),axis tight
2
RESULT : POWERSPECTRUM USING PERIODOGRAM STUDIED
Published with MATLAB R2013a

You might also like