root/matlab/mex/estimator_disp.m @ 265

Revision 265, 262 bytes (checked in by smidl, 15 years ago)

UI in matlab

Line 
1hold off
2plot([M.t(:,1:2:end) M.r(:,1)],'-.');
3hold on
4plot(M.est);
5co = get(gca,'ColorOrder');
6for i=1:5
7ind =1:10:90;
8h=errorbar(ind,M.est(ind,i),...
9M.est(ind,i)-M.lb(ind,i),M.est(ind,i)-M.ub(ind,i),'.');
10set(h,'color',co(i,:));
11end
12
13set(gca,'YLim',[-0.7,2]);
Note: See TracBrowser for help on using the browser.