root/applications/mpdm/SYSID09/merg_2a.m @ 706

Revision 706, 0.8 kB (checked in by smidl, 15 years ago)

eol-native

  • Property svn:eol-style set to native
Line 
1function merg_2a(fname)
2itload(fname);
3
4Mm=Mm(1:99,:);
5P1m=P1m(1:99,:);
6P2m=P2m(1:99,:);
7T=T(1:99,:);
8
9
10
11figure(1)
12subplot(2,2,1)
13hold off
14plot(T(:,1),':');
15hold on
16plot(Mm(:,1),'--','LineWidth',2);
17plot(P1m(:,1),'--');
18plot(P2m(:,1),'-');
19title('parameter a and its estimates')
20
21subplot(2,2,2);
22hold off
23plot(T(:,2),':');
24hold on
25plot(Mm(:,2),'--','LineWidth',2);
26plot(P1m(:,2),'--');
27title('parameter b and its estimates')
28
29subplot(2,2,3)
30hold off
31plot(T(:,3),':');
32hold on
33plot(Mm(:,4),'--','LineWidth',2);
34plot(P2m(:,2),'-');
35xlabel('time ');
36title('parameter c and its estimates')
37
38subplot(2,2,4)
39hold off
40plot(T(:,4),':');
41hold on
42plot(Mm(:,3),'--','LineWidth',2);
43plot(P1m(:,3),'--');
44plot(P2m(:,3),'-');
45title('parameter \sigma^2 and its estimates')
46xlabel('time ');
Note: See TracBrowser for help on using the browser.