Matlab for the Periodogram
Octave and the Matlab Signal Processing Toolbox have a periodogram function. Matlab for computing a periodogram of white noise is given below (see top-right plot in Fig.6.1):
M = 32; v = randn(M,1); % white noise V = abs(fft(v)).^2/M; % periodogram
Next Section:
Welch Autocorrelation Estimate
Previous Section:
What is Noise?