Changeset 568 for applications/bdmtoolbox/tutorial/merging
- Timestamp:
- 08/20/09 00:54:44 (15 years ago)
- Location:
- applications/bdmtoolbox/tutorial/merging
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
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