% maximum entropy spectrum and Burg spectrum
me_spectrum=me(R,A,B,th);
plot(th,me_spectrum);
me_burg=pburg(y,5,th);
hold on;
plot(th,me_burg);
Maximum entropy spectrumThe entropy of a probability distribution function ![]() quantifies the uncertainty of the corresponding random variable.
When ![]() For a zero-mean stationary Gaussian process ![]() Then the entropy rate is ![]() The limit of ![]() Given state statistics, the maximum entropy power spectrum is ![]() The solution to this problem (see [2]) is ![]() where ![]() and This formula subsumes the classical Burg method/AR modeling where the The maximum entropy spectrum is obtained using the routine me.m. For the example discussed above, the maximum entropy spectrum is shown in blue. There are two peaks detected inside the window. Burg's spectrum is shown in green. The resolution of Burg's solution is not sufficient to distinguish the two peaks. % maximum entropy spectrum and Burg spectrum
me_spectrum=me(R,A,B,th);
plot(th,me_spectrum);
me_burg=pburg(y,5,th);
hold on;
plot(th,me_burg);
|