Changeset 934 for applications/bdmtoolbox/tutorial/userguide
- Timestamp:
- 05/11/10 17:42:51 (15 years ago)
- Location:
- applications/bdmtoolbox/tutorial/userguide
- Files:
-
- 13 modified
Legend:
- Unmodified
- Added
- Removed
-
applications/bdmtoolbox/tutorial/userguide/arx_basic_example.m
r933 r934 1 1 % load data created by the MpdfDS_example 2 clear all 2 3 load pdfds_results 3 4 -
applications/bdmtoolbox/tutorial/userguide/arx_ctrl_example.m
r933 r934 1 clear all 1 2 % name random variables 2 3 y = RV({'y'},1); -
applications/bdmtoolbox/tutorial/userguide/arx_selection_example.m
r933 r934 1 clear all 1 2 % load data created by the pdfDS_example 2 3 load pdfds_results -
applications/bdmtoolbox/tutorial/userguide/arx_windsurfer_example.m
r933 r934 1 clear all 1 2 % name random variables 2 3 y = RV({'y'},1); -
applications/bdmtoolbox/tutorial/userguide/dist_ctrl_example.m
r871 r934 1 clear all 1 2 % name random variables 2 3 y = RV({'y'},1); -
applications/bdmtoolbox/tutorial/userguide/dist_estim_example.m
r933 r934 1 clear all 1 2 % name random variables 2 3 y = RV({'y'},1); -
applications/bdmtoolbox/tutorial/userguide/epdfds_example.m
r933 r934 1 clear all 2 1 3 U.class = 'euni'; 2 4 U.high = 1; -
applications/bdmtoolbox/tutorial/userguide/frg_estim.m
r924 r934 1 clear all 1 2 % load data created by the MpdfDS_example 2 3 load pdfds_results -
applications/bdmtoolbox/tutorial/userguide/lqg_control.m
r733 r934 1 clear all 2 1 3 system.class ='mlnorm<chmat>'; 2 4 system.A = [1 1 1]; -
applications/bdmtoolbox/tutorial/userguide/memds_example.m
r706 r934 1 clear all 2 1 3 DS.class='MemDS'; 2 4 DS.Data =[1 2 3 4 5 6]; -
applications/bdmtoolbox/tutorial/userguide/mixef_basic.m
r735 r934 1 clear all 2 1 3 com.class='ARX'; 2 4 com.rv = RV({'d'},[2],[0]); -
applications/bdmtoolbox/tutorial/userguide/particle_ARX.m
r933 r934 1 clear all 1 2 % name random variables 2 3 x = RV({'x'},1); -
applications/bdmtoolbox/tutorial/userguide/pdfds_example.m
r745 r934 1 clear all 1 2 % name random variables 2 3 y = RV({'y'},1); … … 30 31 31 32 %%% store results 32 Data=[M.DS_ y'; M.DS_u'];33 Data=[M.DS_dt_y'; M.DS_dt_u']; 33 34 drv = RVjoin([y,u]); 34 35 true_theta=[fy.A fy.const];