Can Matlab Compiler package stand-alone apps that can read and write data to an Excel spreadsheet?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have created a program that involves reading and writing information to an Excel spreadsheet. I have created a stand-alone app using Matlab Compiler, but the program will not write or open the Excel spreadsheet. I am using writetable and xlsread.
2 comentarios
Dennis
el 2 de Ag. de 2018
Yes, this can work. Without more information it is hard to pinpoint the error. My first guess would be that the path to your files is incorrect.
Respuestas (1)
Harsh
el 3 de Ag. de 2018
You can use MATLAB compiler to compile programs that read and write from an Excel. As Dennis mentioned, make sure the Excel exists and has the correct path available to the compiled program. This link maybe helpful to package the excel file with your code.
Also suggest using readtable instead of xlsread. As an additional option, you can create a log file that would give runtime information on the exact error message MATLAB is encountering. To do this use 'Additional runtime settings' on the Application Compiler GUI or use the -R option with mcc.
2 comentarios
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!