root/tests/UI/UIArxDS_test.cfg @ 263

Revision 263, 0.6 kB (checked in by smidl, 15 years ago)

UIArxDS test

Line 
1//Data generating system
2system = {
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
23logger = {
24        type= "dirfilelog";
25        dirname = "exp/arx_ui";
26        maxlen = 1000; //
27};
28
29//estimation
30estimator = {
31    type = "ARX";
32       
33};
34
35//experiment description
36experiment:{
37        ndat = 9000;
38};
Note: See TracBrowser for help on using the browser.