Changeset 943 for applications/bdmtoolbox/tutorial/userguide
- Timestamp:
- 05/16/10 23:13:02 (15 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
applications/bdmtoolbox/tutorial/userguide/epdfds_example.m
r934 r943 4 4 U.high = 1; 5 5 U.low = -1; 6 U.rv.class='RV'; 7 U.rv.names={'a'}; 6 U.rv = RV('a',1); 7 8 f.class = 'mexEpdf'; 9 f.object = mexLaplace; 10 f.object.mu =12; 11 f.object.b = 1; 12 f.object.rv = RV('b',1); 13 8 14 9 15 DS.class='EpdfDS'; 10 DS.epdf = U;16 DS.epdf =f; %U 11 17 12 18 experiment.ndat=10; … … 14 20 M=simulator(DS,experiment); 15 21 16 M.DS_dt_ a22 M.DS_dt_b