[ Home | SDTools |
SDT |
Sales ] [ Support | Services | Publications] |
Importing modal analysis data
UFS=ufread('File.uff'); iiplot; % initialize the iiplot GUI and database wrapper XF UFS(1).info % lets you determine what is in each data block % when you know what data block to display 3 for example. XF(1)=UFS(3); iiplot XF(1).x='frequency'; % modify data set properties XF(1).yn='accele';If your data is not stored using the universal format. You should, initialize the database wrapper XF then fill in the data with your own code.
iiplot; % initialize the iiplot GUI and database wrapper XF XF(1)=w; % set frequencies XF(1).xf; % set data (doc sdt/xf will open the manual page for xf format) % optionnaly you can set other information XF(1).dof=mdof; % sensor definitions XF(1).x='frequency'; % modify data set properties XF(1).yn='accele'; XF(1).info % will display details % to properly do identification set datatype in IDopt IDopt.data='acc';