root/applications/bdmtoolbox/tutorial/userguide/memds_example.m @ 1058

Revision 1058, 292 bytes (checked in by smidl, 14 years ago)

doc + DS cleanup

  • Property svn:eol-style set to native
RevLine 
[934]1clear all
2
[1057]3DS.class='MemDS';                    % data are copied into C
[615]4DS.Data =[1 2 3 4 5 6];
5
[1057]6% Faster Alternative in Matlab - data are read directly from Matlab
7DS2.class='mxArrayDS';
8Data =[1 2 3 4 5 6];
9DS2.varname = 'Data';
10
[618]11M=simulator(DS);
[1057]12%M=simulator(DS2);
[615]13
[1058]14M.DS_dt_
[1057]15%M.DS_dt_Data
Note: See TracBrowser for help on using the browser.