root/matlab/mex/estimator_disp.m
@
269
Revision 265, 262 bytes (checked in by smidl, 16 years ago) |
---|
Line | |
---|---|
1 | hold off |
2 | plot([M.t(:,1:2:end) M.r(:,1)],'-.'); |
3 | hold on |
4 | plot(M.est); |
5 | co = get(gca,'ColorOrder'); |
6 | for i=1:5 |
7 | ind =1:10:90; |
8 | h=errorbar(ind,M.est(ind,i),... |
9 | M.est(ind,i)-M.lb(ind,i),M.est(ind,i)-M.ub(ind,i),'.'); |
10 | set(h,'color',co(i,:)); |
11 | end |
12 | |
13 | set(gca,'YLim',[-0.7,2]); |
Note: See TracBrowser
for help on using the browser.