|
I try to load EMG signal that is in .dat format ... I have followed your indication from this discussion (from forum):
Note 2. You can also convert your signal to a binary file like this:
fid = fopen ('myfile.dat','w');
fwrite (fid, mysignal, 'int16');
fclose (fid);
where "mysignal" is the name of your signal. It should be scaled so that the conversion to int16 does not degrade the information.
You should be able to load the .dat file using the "Load EMG file" command from the File Menu. If it doesn't look right, make sure you specify the byte ordering and sampling rate correctly in the EMG file format dialog box.
BUT WHEN I TRY TO LOAD NOTHING APPARE
BestRegards Josip
|