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

通讯编程文档

开发平台:

Matlab

  1. % binormal.m generation of a binormal vector pages 52-53
  2. y=randn(2,3000);
  3. c=1/(2*sqrt(2))*[sqrt(3)+1 sqrt(3)-1; sqrt(3)-1 sqrt(3)+1];
  4. x=c*y;
  5. plot(x(1,:),x(2,:),'.')