Package MATLAB programs for deployment as standalone applications
The Application Compiler app packages MATLAB® programs into applications that can run outside of MATLAB.
MATLAB Toolstrip: On the Apps tab, under Application Deployment, click the app icon.
MATLAB command prompt: Enter
applicationCompiler
.
main file
— name of the function to packageName of the function to package as a character vector. The selected function is the entry point for the compiled application.
packaging options
— method for installing the MATLAB Runtime with the compiled applicationMethod for installing the MATLAB Runtime as a radio button. Including MATLAB Runtime in the package significantly increases the size of the package.
files required for your application to run
— files that must be included with applicationFiles that must be included with application as a list of files.
files installed with your application
— optional files installed with applicationOptional files installed with application as a list of files.
Additional parameters passed to MCC
— flags controlling the behavior of the compilerFlags controlling the behavior of the compiler as a character vector.
testing files
— folder where files for testing are storedFolder where files for testing are stored as a character vector.
end user files
— folder where files for building a custom installer are storedFolder where files for building a custom installer are stored are stored as a character vector.
packaged installers
— folder where generated installers are storedFolder where generated installers are stored as a character vector.
application name
— name of the installed applicationName of the installed application as a character vector.
For example, if the name is foo
, the installed
executable would be foo.exe
, the start menu entry would
be foo. The folder created for the application
would be
. InstallRoot
/foo
The default value is the name of the first function listed in the Main File(s) field of the app.
version
— version of the generated applicationVersion of the generated application as a character vector.
splash screen
— image displayed on installerImage displayed on installer as an image.
author name
— name of the application authorName of the application author as a character vector.
e-mail
— e-mail address used to contact application supportE-mail address used to contact application support as a character vector.
summary
— brief description of applicationBrief description of application as a character vector.
description
— detailed description of applicationDetailed description of application as a character vector.
default installation folder
— folder where application is installedFolder where the application is installed as a character vector.
installation notes
— notes about additional requirements for using applicationNotes about additional requirements for using application as a character vector.