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

技术管理

开发平台:

Matlab

  1. % make figure 7.7
  2. Z2=zeros(4,491);
  3. load run2
  4. tail=[0 5 8 66]; 
  5. z=sum(real(E).^2,2);
  6. [y ind]=sort(z);
  7. newE=E(ind,:);
  8. for i=1:4,
  9.    Z2(i,:)=sum((real(newE(1:400-tail(i),:)).^2))/(400-tail(i));
  10. end
  11. figure(1);semilogy(Z2','k')
  12. title('figure 7.7')
  13. print -dps 7_7