Hi Benjamin,
It seems that you are trying to load data from a .csv file into Modbus Explorer, which requires a .mat file format. Here's a streamlined approach:
- Use MATLAB's 'Import Data' feature to bring the data from your .csv file into MATLAB.
- Convert the imported data into a .mat file using the save command:
save('filename.mat','variable_name');
Once converted, you can easily import the .mat file into Modbus Explorer.
Hope this helps!