Main Content

matlab.addons.installedAddons

Get list of installed add-ons

Description

example

addons = matlab.addons.installedAddons returns a list of currently installed add-ons.

Examples

collapse all

Suppose that you have an add-on called Random File Name Creator and versions 2.0 and 4.0 of an add-on called My Toolbox installed on your system. Get the list of installed add-ons.

addons = matlab.addons.installedAddons
 addons =

  1×4 table

             Name                   Version     Enabled                  Identifier              
    ___________________________    _________    _______    ______________________________________

    "Random File Name Creator"     "1.0"         true      "75442144-f751-4011-bf0e-32b6fb2f1433"
    "My Toolbox_v4.0"              "4.0"         true      "6de8682e-9c3c-407e-bad7-aa103d738d08"
    "My Toolbox"                   "2.0"         false     "6de8682e-9c3c-407e-bad7-aa103d738d08"

Output Arguments

collapse all

Installed add-ons information, returned as a table with one row for each add-on. The table has these columns.

FieldDescriptionType
NameName of the add-onString scalar
VersionVersion of the add-onString scalar
EnabledWhether the add-on is enabledLogical
IdentifierUnique identifier of the add-onString Scalar

Version History

Introduced in R2017b