How do I compile a standalone application with external excel files?

8 views (last 30 days)
I created a Matlab code that works with data from some excel files. I want to compile the code into a standalone application but the excel files need to remain outside as they are going to be constantly updated. The idea is to have the application work with the data from the excel and produce a different output as the excels get updated. Is there a way to compile while keeping the excels separate and thus able to be edited? Thanks.

Accepted Answer

Jan
Jan on 23 Aug 2017
If the files are constantly updated, they are not part of the compiled application. Therefore the solution is trivial: You do not have to include the files, but it is to either insert the path, where the files are found, or to use e.g. uigetfile to let the user choose the file location.

More Answers (0)

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!