ip_06_05.m
上传用户:loeagle
上传日期:2013-03-02
资源大小:1236k
文件大小:1k
源码类别:

通讯编程文档

开发平台:

Matlab

  1. % MATLAB script for Illustrative Problem 5, Chapter 6.
  2. echo on
  3. p=0.99;
  4. N=1000;
  5. d=5;
  6. % The filter is described by the vectors A and B below...
  7. A=[1 -2*p p^2];
  8. B=(1-p)^2;
  9. for i=1:N,
  10.    [white_noise_seq1(i) white_noise_seq2(i)] = gngauss;
  11.    echo off;
  12. end;
  13. echo on;
  14. b1=filter(B,A,white_noise_seq1);
  15. b2=filter(B,A,white_noise_seq2);
  16. c=b1(d+1:N)+b2(1:N-d);
  17. % The case where p=0.9 follows...
  18. p=0.9;
  19. A=[1 -2*p p^2];
  20. B=(1-p)^2;
  21. for i=1:N,
  22.    [white_noise_seq1(i) white_noise_seq2(i)] = gngauss;
  23.    echo off;
  24. end;
  25. echo on;
  26. new_b1=filter(B,A,white_noise_seq1);
  27. new_b2=filter(B,A,white_noise_seq2);
  28. new_c=new_b1(d+1:N)+new_b2(1:N-d);
  29. % plotting commands follow
  30. plot(1:N,b1,'-',1:N,b2,'--',1:N-d,c,':') ; 
  31. pause % p=0.99 ; Press a key to see results with pole at p=0.9
  32. plot(1:N,new_b1,'-',1:N,new_b2,'--',1:N-d,new_c,':') ;