How do I use a .exe compiled with an app in app designer?

6 visualizzazioni (ultimi 30 giorni)
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.

Risposta accettata

Matt J
Matt J il 28 Nov 2024
Modificato: Matt J il 28 Nov 2024
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 Commenti
Matt J
Matt J il 12 Dic 2024
If you told deploytool to include Users\data\stuff\GitHub\analysis.exe, then yes, it is normal.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Standalone Applications in Help Center e File Exchange

Prodotti


Release

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by