Hello,
I'm dealing with an issue where the computer crashed in the middle of a task, and although the .mat file for the behavioral data before the crash was saved, I cannot open it in MATLAB or read it with scipy.io.loadmat. I get the following message when I try to open the file in MATLAB:
Error using load
Number of columns on line 2 of ASCII file
must be the same as previous lines.
Error in uiimport/runImportdata (line 467)
datastruct = load('-ascii', fileAbsolutePath);
Error in uiimport/gatherFilePreviewData (line 435)
[datastruct, textDelimiter, headerLines]=
runImportdata(fileAbsolutePath, type);
Error in uiimport (line 245)
gatherFilePreviewData(fileAbsolutePath);
Do you know of any ways to repair / read the file?
Thank you!