how to convert .dat file to .mat in Matlab

You need to read the dat file into matlab, set MrPort and Reco variables and then save to mat file:

>> save('myMatFile.mat', 'MrPort', 'Reco' );

Leave a Comment