How do I use a .exe compiled with an app in app designer?
6 ビュー (過去 30 日間)
古いコメントを表示
I have designed an app in app designer, this runs with no problems.
One of the functions of the app is to run a small .exe that processes some data (let's call it analysis.exe). When designing the app I call analysis.exe via the system command using its filepath.
I have finished my app now, when I compile it I would like to add analysis.exe as a required file, so it is compiled with the rest of the program, but then how do I call it within the app? Is this the correct way to go about it?
Should I instead leave analysis.exe as a standalone, but then how can I know what its filepath will be when I give the program to a new user?
Thanks for any help.
0 件のコメント
採用された回答
Matt J
2024 年 11 月 28 日
編集済み: Matt J
2024 年 11 月 28 日
If you are using the deploytool app to compile, you can include analysis.exe via the section "Files required for your application to run". This will cause analysis.exe to be bundled into the deployed package, and for it to be unpacked into the CTF archive when your deployed standalone is run. Within your MATLAB code, you can build the filepath needed to reference it using ctfroot, e.g.,
if isdeployed
exePath=fullfile(ctfroot,'analysis.exe')
else
exePath=____
end
7 件のコメント
Matt J
2024 年 12 月 12 日
If you told deploytool to include Users\data\stuff\GitHub\analysis.exe, then yes, it is normal.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Standalone Applications についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!