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

通讯编程文档

开发平台:

Matlab

  1. % MATLAB script for Illustrated Problem 5.7.
  2. echo on
  3. n0=.5*randn(100,1);
  4. n1=.5*randn(100,1);
  5. n2=.5*randn(100,1);
  6. n3=.5*randn(100,1);
  7. x1=1.+n0;
  8. y1=n1;
  9. x2=n2;
  10. y2=1.+n3;
  11. plot(x1,y1,'o',x2,y2,'*')
  12. axis('square')