- Open MATLAB and navigate to the directory where your MATLAB App files are located.
- Use the MATLAB Compiler App or the command-line interface (MATLAB Compiler Command) to compile your MATLAB App. You will need to specify the main entry point file of your App, which is typically the .mlapp file.
- During the compilation process, MATLAB Compiler will analyze the dependencies of your App and package them along with your code. This includes any external libraries (.dll) that your App depends on.
- Once the compilation is complete, you will obtain an executable file (.exe) that you can distribute and run on computers without MATLAB. This executable will include a runtime environment that allows the App to run independently.
- Transfer the generated executable file to the target computer that does not have MATLAB installed and simply run it to launch your App. You can also use MATLAB Runtime for this.
Error creating an executable
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Victor Ruiz Escorihuela
le 9 Juin 2023
Commenté : Victor Ruiz Escorihuela
le 14 Juin 2023
If I have an application made from the matlab appdesigner that depends on external libraries (.dll), how can I make that .mlapp application run as an executable on a computer that does not have matlab?
Si lo hago usando "Share" me aparece el siguiente error.
0 commentaires
Réponse acceptée
Govind KM
le 9 Juin 2023
Hi Victor,
To run a MATLAB App created with App Designer on a computer that does not have MATLAB installed, you can compile the App into a standalone executable using MATLAB Compiler. The MATLAB Compiler allows you to package your MATLAB code, including any dependencies such as external libraries, into a standalone executable file that can be run on computers without MATLAB.
Here are the general steps to do this:
You can refer to the MATLAB Compiler documentation for detailed instructions and examples on using the MATLAB Compiler to compile your MATLAB App into a standalone executable.
3 commentaires
Govind KM
le 13 Juin 2023
There seems to be some issue with the code in the LibraryTiePieMatlab.m script. Could you share that script? Also check if the arguments passed to the struct function are valid, and that proper syntax is followed before the line causing the error(line 977).
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur C Shared Library Integration dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!