plot_P.m
上传用户:kendun0711
上传日期:2007-06-03
资源大小:32k
文件大小:0k
源码类别:

技术管理

开发平台:

Matlab

  1. % remake figure 5.17
  2. figure
  3. load run5;plot(mean(Wx'), '--'); hold on
  4. mu=rp.mu; n=1:5000;
  5. a=-0.99; lambda=abs(a); Ew1=-a+a*(1-mu*lambda).^n;
  6. a=0.99;  lambda=abs(a); Ew2=-a+a*(1-mu*lambda).^n;
  7. plot(Ew1); plot(Ew2)
  8. load run5b;plot(mean(Wx'),'--');
  9. line([1 5000], [0 0]);hold off
  10. text(250,0.62,'a = - 0.99'); text(250,-0.62,'a = + 0.99')
  11. title(' figure 5.17 mu=0.001')
  12.      legend('Experiment', 'Theory')
  13. print -dpsc 5_17