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

技术管理

开发平台:

Matlab

  1. % remake 5.22
  2. figure
  3. for i=4:-1:1,
  4.    eval(['load run', num2str(i)])
  5.    Z(:,i)=sum((E.^2),2)/200;
  6.    j=abs(4-i)+1;
  7.    subplot(4,1,j)
  8.    stem(mean(Wo,2),'k')
  9.    set(gca,'box','off')
  10.    set(gca,'ylim',[-1 1.7])
  11.    %  set(gca,'xticklabel',[5 10])
  12.    line([0 11],[0 0])
  13. end
  14. clear Z;
  15. subplot(4,1,1); title('figure 5.22')
  16. print -dps 5_22