Can MATLAB select few dll files instead of whole large MCR to run a executable program files using GUIDE?
3 views (last 30 days)
Show older comments
I wrote a program a program usig the MATLAB GUIDE and its size is few KB. The program does a simple routine job. However to run the executable program file in a different computer which does not have MATLAB, it needs MATLAB runtime enviroment which has size around ~700 MB. Is there any way to select the necessary dll related to the program and run a executable file so that the size become few MB.
Regards,
Jaladhar
0 Comments
Answers (1)
Thiago Henrique Gomes Lobato
on 15 Mar 2020
Matlab kind of already does this in your executable file. If you, for example, try to compile some p-files it is possible that the compiled coded will not run because some used library was not recognized by the compiler and not imported in your program. The runtime environment is, on the other hand, necessary for every application, so there's no way to go around it. What you can do in order to keep the smaller file is to select the option to download the compiler online, so your distributed file will remain small and each person would be able to download the runtime by themselves.
See Also
Categories
Find more on Environment and Settings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!