Hi Emma,
I understand that you are having trouble while trying to import EDA data to MATLAB using “Ledalab” batch command.
The terminal output here is suggesting that MATLAB was unable to open and import the file during the Batch-Analysis of these data files after conversion to “.m” and “.txt” respectively.
In this case, there can be a possibility that the files that are to be converted are not in the MATLAB path and the conversion of the “.csv” file did not occur or it might can also occur if the file was successfully converted to “.m” and “.txt" file but has been saved at a different location which is not included in MATLAB’s path.
Please refer the following MathWorks Documentation link for more information on “MATLAB path”:
Besides, using absolute full file path can also help eliminate any errors that may arise because of using relative path and any other confusion in determining the location of a file.
input=fullfile('filepath','data.csv');
Wrapping the code in a try catch block can help understand if the referred file is in the expected path or not.
Please refer the MathWorks Documentation link below for more information on “fullfile()” command:
I hope this helps.