change the input data, by application compiler
Ältere Kommentare anzeigen
hello
I would like to know if it's possible after creating the executable file by application compiler, to change the input data, i.e. input data in the form of Excel file, and run the code with other new data ?
Thank you
5 Kommentare
Mohammad Sami
am 3 Dez. 2020
Short answer yes it can be done. You will need to prompt the user to select the file. Use the function uigetfile to prompt the user to select the file.
https://www.mathworks.com/help/matlab/ref/uigetfile.html
yousef swesi
am 3 Dez. 2020
yousef swesi
am 3 Dez. 2020
Mohammad Sami
am 4 Dez. 2020
Is the file path in error message correct location of the file?.
Try the following way to get full path to the file selected.
[file,path] = uigetfile();
fullpath = fullfile(path,file);
yousef swesi
am 4 Dez. 2020
Antworten (0)
Kategorien
Mehr zu MATLAB Compiler finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!