drawing.m
上传用户:jspk663
上传日期:2013-08-19
资源大小:232k
文件大小:0k
源码类别:

matlab例程

开发平台:

Matlab

  1. function drawing(P_1,P,X_1,X,ii,co,si)
  2. if si==1
  3.     t1=sqrt(diag(P_1));
  4.     t2=sqrt(diag(P));
  5.     for i=1:length(co)
  6.       t(i,1)=t1(co(i));
  7.       t(i,2)=t2(co(i));
  8.     end
  9.     
  10. elseif si==2
  11.     for i=1:length(co)
  12.       t(i,1)=X_1(co(i));
  13.       t(i,2)=X(co(i));
  14.     end
  15. end
  16. plot(ii-1:ii,t','EraseMode','none');
  17. drawnow
  18.    
  19.