1 / 20

Compute the periodogram of a 200 Hz signal embedded in additive noise using the default window:

Compute the periodogram of a 200 Hz signal embedded in additive noise using the default window:. randn('state',0); Fs = 1000; t = 0:1/Fs:.3; x = cos(2*pi*t* 200 )+ 0.1*randn(size(t));. periodogram (x,[],'twosided',512,Fs). X=corrmtx(x,20); % Correlation matrix for leg = 20

gigi
Télécharger la présentation

Compute the periodogram of a 200 Hz signal embedded in additive noise using the default window:

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Compute the periodogram of a 200 Hz signal embedded in additive noise using the default window: randn('state',0); Fs = 1000; t = 0:1/Fs:.3; x = cos(2*pi*t*200)+0.1*randn(size(t));

  2. periodogram(x,[],'twosided',512,Fs)

  3. X=corrmtx(x,20); % Correlation matrix for leg = 20 imagesc(X'*X);

  4. 1 6 11 16 +5 +5 +5

  5. x = cos(2*pi*t*400)+0.1*randn(size(t));

  6. x = cos(2*pi*t*200)+0.4*randn(size(t)); x = cos(2*pi*t*200)+0.1*randn(size(t));

  7. x = cos(2*pi*t*200)+0.8*randn(size(t)); x = cos(2*pi*t*200)+0.1*randn(size(t));

  8. x = cos(2*pi*t*200)+0.8*randn(size(t)); x = cos(2*pi*t*200)+0.1*randn(size(t));

  9. x = cos(2*pi*t*200)+0.4*randn(size(t)); Covariance matrix x = cos(2*pi*t*200)+0.8*randn(size(t));

  10. x = cos(2*pi*t*100)+0.4*randn(size(t)); x = cos(2*pi*t*200)+0.4*randn(size(t));

  11. Yukarıdaki covariance matrix, aşağıdaki işarete ait olabilir mi? x = cos(2*pi*t*400)+0.4*randn(size(t));

  12. x = cos(2*pi*t*400)+0.4*randn(size(t));

  13. AR MODEL a = aryule(x,4); A = [1.0000 -0.2356 0.6802 0.4158 -0.0724] freqz(1,a,512,'whole',Fs);

  14. y = filter(1,a,x); periodogram(y,[],'twosided',512,Fs);

  15. Filtrelenmiş işaretin periodogram’ı alındı. Gürültüden arındırılmış bir periodogram elde edildi. Herhangi bir filtre ile filtrelendikten sonra periodogram alınsa aynı sonuç elde edilir mi?

  16. a = [1.1352 -0.3746 -0.4832 1.5995 -0.0878] y = filter(1,a,x); periodogram(y,[],'twosided',512,Fs);

  17. a = [1.1352 -0.3746 -0.4832 1.5995 -0.0878] freqz(1,a,512,'whole',Fs);

More Related