Main Content

matlab.apputil.run

Run app programmatically

Description

example

matlab.apputil.run(appid) runs the custom app specified by the unique identifier, appid.

Examples

collapse all

Assume you installed two apps, PlotData and setslider. Run PlotData programmatically, using its ID.

Get IDs of all installed apps.

matlab.apputil.getInstalledAppInfo
ID                      Name
-------------------     ----------------
setsliderAPP            setslider
PlotDataAPP             PlotData

Run PlotData.

matlab.apputil.run('PlotDataAPP')

Input Arguments

collapse all

ID of custom app you want to run, specified as a character vector or string scalar.

Example: 'DataExplorationAPP'

Example: "DataExplorationAPP"

Tips

  • The ID of a custom app is returned when you install it. You can use matlab.apputil.getInstalledAppInfo to get the ID after you have installed an app.

  • When a custom app runs, MATLAB® adds any folders it needs to have added to the path, as identified when the app was packaged. When the app exits, MATLAB removes those folders from the path.

  • You can run multiple, different custom apps concurrently. However, you cannot run two instances of the same app concurrently.

Version History

Introduced in R2012b