TESTLAM.M
上传用户:sfyaiting
上传日期:2009-10-25
资源大小:320k
文件大小:1k
源码类别:

GPS编程

开发平台:

Matlab

  1. close all;
  2. clear all;
  3. qahat = mkqahat2;
  4. qzhat = decorrel(qahat);
  5. [L,D] = ldldecom(qzhat);
  6. figure;
  7. axis ([-1 1 -1 1]);
  8. hold on;
  9. profile on;
  10. for i = -1:0.01:1;
  11.   for j = -1:0.01:1;
  12.     
  13.     afloat = [i;j];
  14.     incr   = afloat - rem(afloat,1);
  15.     afloat = rem(afloat,1);
  16.     
  17.     Chi2   = chistart (D,L,afloat,2);
  18.     afixed = lsearch (afloat,L,D,Chi2,1);
  19.     afixed = round(afixed + repmat(incr,1,1));
  20.     if isequal(afixed,[0;0]);
  21.       plot (i,j,'.');
  22.     end;
  23.   
  24.   end;
  25. end;
  26. profile report;
  27. points = mkpullin (qzhat);
  28. h = plot ([points(:,1)' points(1,1)], [points(:,2)' points(1,2)],'r-');
  29. set (h,'LineWidth',3);