Self contained Matlab Program

조회 수: 6 (최근 30일)
Wolf Blecher
Wolf Blecher 2022년 10월 20일
댓글: Wolf Blecher 2022년 12월 2일
I want to deploy an application compiled with the Matlab Compiler. Ideally this application is self contained/portable.
Due to security constraints, I cannot put something to the path, install something on the user system, etc.
Is it possible to pack the Matlab Runtime (or the necessary dlls) into the folder of the application so that I can just copy it to the system of choice and run it from the corresponding folder?

채택된 답변

Wolf Blecher
Wolf Blecher 2022년 12월 2일
Here is my workaround:
  • Install the Matlab-Runtime to a system where you have Administrator Rights (which you hopefully do have somewhere)
  • Copy the Matlab-Runtime Folder (e.g. 2022b) to e.g. C:\DevData\MyLocalApp\2022b
  • Copy your compiled exe file (and all the other files you need) to c:\DevData\MyLocalApp\2022b\runtime\win64
  • Write a script file e.g. C:\DevData\MyLocalApp\CallMe.bat which calls your exe (e.g. .\2022b\runtime\win64\myApp.exe) and passes necessary command line arguments on (if any)
Now you can redistribute the complete folder C:\DevData\MyLocalApp to the other system, without installing the matlab runtime, and run your application by calling the CallMe.bat file.
In cases where you don't want to redistribute the complete Matlab Runtime, but only the part that you need for your application, please follow the instructions by Kevin to include the runtime (installer!!!) with your own app installer. Then just copy this smaller runtime instead of the complete one.
  댓글 수: 1
Wolf Blecher
Wolf Blecher 2022년 12월 2일
I tried this also with Symlinks instead of the bat file, but that won't do the trick.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Kevin Holly
Kevin Holly 2022년 10월 20일
When you package your app, you can select "Runtime included in package".
You can also add other files to the package by clicking the plus sign shown in the screenshot below.
  댓글 수: 3
Kevin Holly
Kevin Holly 2022년 10월 20일
편집: Kevin Holly 2022년 10월 20일
See page 45 (4-5) in the link below.
You can add files by using -a filepath with mcc (see link below).
Also see page 79 (7-7) in PDF for installing Runtime without Administrator Rights.
Wolf Blecher
Wolf Blecher 2022년 10월 20일
편집: Wolf Blecher 2022년 10월 22일
Thank you Kevin for the Links and the Answer.
I am already using the -a option with mcc to add my other files needed and have them copied. So the only thing that is missing, is the matlab runtime. That is where the question comes from, is it possible to put the Matlab Runtime besides my application so that I DON'T need to
  • Install Matlab Runtime with Admin Rights (which seems to be the usual way to go)
  • Add Something to the PATH Environment of the user (which seems to be necessary when Admin Rights are not available)
Instead I want the runtime to be in the same folder as my application - so to have a really portable app.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB Compiler에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by