Changeset 568 for applications/bdmtoolbox/tutorial
- Timestamp:
- 08/20/09 00:54:44 (15 years ago)
- Location:
- applications/bdmtoolbox/tutorial
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
applications/bdmtoolbox/tutorial/arx_mex_test.cfg
r357 r568 19 19 20 20 //optional fields 21 dV0 = [1e-3, 1e-5, 1e-5, 1e-5, 1e-5]; //default: 1e-3 for y, 1e-5 for rgr21 dV0 = matrix(5,1,[1e-3, 1e-5, 1e-5, 1e-5, 1e-5]); //default: 1e-3 for y, 1e-5 for rgr 22 22 //nu0 = 8.; //default: rgrlen + 2 23 23 frg = .9991; // forgetting, default frg=1.0 -
applications/bdmtoolbox/tutorial/merging/merge_grid.m
r409 r568 10 10 11 11 % support 12 support.grid={[-5,5]}; 13 support.nbins=[100]; 12 support.class='rectangular_support'; 13 support.ranges={[-5,5]}; 14 support.gridsizes=[100]; 14 15 15 16 % 1D … … 49 50 type=0; 50 51 if type==0 51 support2.grid={[-5,5],[0.001,5]}; 52 support2.nbins=[10,10]; 52 support2.class='rectangular_support'; 53 support2.ranges={[-5,5],[0.001,5]}; 54 support2.gridsizes=[10,10]; 53 55 else 54 56 support2=struct('pdf',... -
applications/bdmtoolbox/tutorial/merging/pdfs.m
r409 r568 40 40 Ga_ =struct('class','mepdf','epdf',Ga); % convert f(a) to f(a|) 41 41 Gba = struct('class','mprod', 'mpdfs',{{Gb_a,Ga_}}); 42 43 pd.Ga=Ga; 44 pd.N1a=N1a; 45 pd.N1b=N1b; 46 pd.N2a=N2a; 47 pd.Nab=Nab; 48 pd.GiW=GiW; 49 pd.Gba=Gba; 50