|
Revision 263, 0.6 kB
(checked in by smidl, 17 years ago)
|
|
UIArxDS test
|
| Line | |
|---|
| 1 | //Data generating system |
|---|
| 2 | system = { |
|---|
| 3 | type = "ArxDS"; |
|---|
| 4 | // ids of output |
|---|
| 5 | ychns = 2; |
|---|
| 6 | // ids of inputs |
|---|
| 7 | uchns = 1; |
|---|
| 8 | // regressor ids (only those in ychns or uchns) |
|---|
| 9 | ids = [1, 1, 1, 2]; |
|---|
| 10 | // regressor time delays |
|---|
| 11 | delays = [-1, -2, -3, -1]; |
|---|
| 12 | // theta |
|---|
| 13 | theta = [0.8, -0.3, 0.4, 1.0, |
|---|
| 14 | 0.0, 0.0, 0.0, 0.0]; |
|---|
| 15 | // offset |
|---|
| 16 | offset = [0.0, 0.0]; |
|---|
| 17 | //variance |
|---|
| 18 | r = [0.1, 0.0, |
|---|
| 19 | 0.0, 1.0]; |
|---|
| 20 | }; |
|---|
| 21 | |
|---|
| 22 | //store results |
|---|
| 23 | logger = { |
|---|
| 24 | type= "dirfilelog"; |
|---|
| 25 | dirname = "exp/arx_ui"; |
|---|
| 26 | maxlen = 1000; // |
|---|
| 27 | }; |
|---|
| 28 | |
|---|
| 29 | //estimation |
|---|
| 30 | estimator = { |
|---|
| 31 | type = "ARX"; |
|---|
| 32 | |
|---|
| 33 | }; |
|---|
| 34 | |
|---|
| 35 | //experiment description |
|---|
| 36 | experiment:{ |
|---|
| 37 | ndat = 9000; |
|---|
| 38 | }; |
|---|