Appdesigner compiled program runtime behavior different
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I am having a little trouble with compiling a standalone app. More specfically, the behavior.
I have a custom function that accepts a number of inputs, including a list of files from the uigetfiles() function.
When I run the program through the app designer, everything works fine. However, if I compile the app, the function is not happy with the files variable. If it is just one file, the error is Undefined function 'myFunction' for input arguments of type 'char'. If it is a list of files, the error is Undefined function 'myFunction' for input arguments of type 'cell'.
I am not sure if it is a problem with the function being setup to take different inputs (char array vs cell list), or if the compiler is not actually including the myFunction.m in the program?
2 Kommentare
Mohammad Sami
am 18 Sep. 2020
Is the function myfunction.m in a separate file.
When compiling the app do you see it in the list of files detected by the compiler ?
Antworten (0)
Siehe auch
Kategorien
Mehr zu MATLAB Compiler finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!