matlab Compiler using mex file
조회 수: 35(최근 30일)
표시 이전 댓글
Hi
I have created a application with a GUI and compile it with matlab Compiler. This application uses a mex file to execute some functions. This mex file uses some dll. I have put the mex file and all the dll in the same directory as the compile application. When I activate the functionality that use the mex file, nothing append. The application never crash but the application do nothing. Is it the right way to use mex with a compiled application.
Thank you
댓글 수: 0
답변(8개)
Siddharth Bhutiya
2018년 9월 21일
If the application uses MEX, DLL or shared libraries, the dependency analyzer will not be able to detect it so you will have to add them as well as other dependencies that they might have, while compiling your application. Please refer to the link below for more details.
댓글 수: 0
Geoffroy
2018년 9월 21일
댓글 수: 2
Royi Avital
2020년 4월 28일
Can I add a whole folder? Will it be added to "path" on deployment?
What Im after is what's the folder structure model for compiled applications.
Is it a single folder with all files?
Geoffroy
2018년 9월 24일
댓글 수: 1
Bruno Luong
2018년 9월 24일
The compiler generates a standalone application that can run on any PC, even that that does not have MATLAB installed. It make a self-contained package with anything it needs together and does not call any function outside the package.
Geoffroy
2018년 9월 24일
댓글 수: 1
Walter Roberson
2018년 9월 24일
The exe produced and stored in the application folder efficiently unzips itself into a temporary directory that is not under the application folder. Think of the part that you install as being a self extracting archive.
Bruno Luong
2018년 9월 24일
The packaging is put on CTF file or directly in EXE file then unpack the first time you run at the location where it think it's suitable, not necessary on your app folder.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!