Revision 622, 0.6 kB
(checked in by smidl, 15 years ago)
|
astyle
|
-
Property svn:eol-style set to
native
|
Line | |
---|
1 | //Data generating system |
---|
2 | system = { type="external"; |
---|
3 | filename="arx_test.cfg"; |
---|
4 | path="system"; |
---|
5 | }; |
---|
6 | |
---|
7 | //store results |
---|
8 | logger = { |
---|
9 | type= "mexlog"; |
---|
10 | maxlen = 90; // |
---|
11 | //dirname = "exp/ax"; |
---|
12 | }; |
---|
13 | |
---|
14 | //estimation |
---|
15 | estimator = { |
---|
16 | type = "ARX"; |
---|
17 | y = {type="RV"; |
---|
18 | names= ( "y" ); |
---|
19 | }; |
---|
20 | rgr = {type="RV"; |
---|
21 | names = ( "y","y","y","u" ); |
---|
22 | times = [-1, -2, -3, -1]; |
---|
23 | }; |
---|
24 | |
---|
25 | //optional fields |
---|
26 | dV0 = matrix ( 5,1,[1e-3, 1e-5, 1e-5, 1e-5, 1e-5] ); //default: 1e-3 for y, 1e-5 for rgr |
---|
27 | //nu0 = 8.; //default: rgrlen + 2 |
---|
28 | frg = .9991; // forgetting, default frg=1.0 |
---|
29 | }; |
---|
30 | |
---|
31 | //experiment description |
---|
32 | experiment: { |
---|
33 | ndat = 90; |
---|
34 | }; |
---|