How can I determine what add-ons I have installed?
1,333 views (last 30 days)
Show older comments
I would like to know what products and other toolboxes are installed into my installation of MATLAB, and also what functions are provided with the toolboxes.
Accepted Answer
MathWorks Support Team
on 23 Feb 2022
Edited: MathWorks Support Team
on 2 Mar 2022
Using the Add-On Manager
The following answer applies to MATLAB version R2015b or later only.
View and manage all installed add-ons using the Add-On Manager.
To open the Add-On Manager:
1. In MATLAB, go to the Home tab.
2. Select Add-Ons > Manage Add-Ons.
MATLAB displays a list of MathWorks products, toolboxes, and add-ons installed on your machine.
To view the function list for an add-on:
1. Select the add-on in the Add-On Manager.
2. In the options menu on the right of the add-on, select View in Add-On Explorer. The Functions tab shows the list of functions included with the add-on.
Using the Command Line
The following answer applies to MATLAB version R2017b or later only.
To produce a list of installed Community add-ons, use the 'matlab.addons.installedAddons' command:
The following answer applies to all versions of MATLAB.
To produce a list of installed MathWorks products and add-ons, use the 'ver' command:
To produce a list of the functions available in MATLAB, use the 'help' function:
1 Comment
Eike Petersen
on 29 Jun 2020
TBH it's really sad that there is no easy programmatic way of checking whether a toolbox is ready to be used, i.e., installed and has a license.
More Answers (3)
Reza Ahmadzadeh
on 29 Jun 2015
To check if you have installed a specific toolbox, you can use the existing function in FileExchange called isToolboxAvailable . The usage is as follows:
result = isToolboxAvailable('image processing toolbox','error');
3 Comments
Eike Petersen
on 29 Jun 2020
This FEX submission appears to solve this problem; see my other answer: https://de.mathworks.com/matlabcentral/fileexchange/77275-matlabtoolboxcheck
Eike Petersen
on 29 Jun 2020
This file exchange submission appears to be a quite comprehensive solution to this problem:
It checks both whether a toolbox is installed and whether a license is available. Works for lists of toolboxes as well.
0 Comments
tommsch
on 7 Oct 2021
Edited: tommsch
on 7 Oct 2021
In the unit test framwork TTEST is an experimentally function available EXPECT_TOOLBOX, which checks the availability of toolboxes. Its usage is quite straightforward, for some toolboxes are even hardcoded shortcuts possible, e.g.:
EXPECT_TOOLBOX('parallel')
checks whether the parallel toolbox is installed and licenced.
For toolboxes with no shortcuts yet, one has to give the exact toolbox name, e.g.:
EXPECT_TOOLBOX('Distrib_Computing_Toolbox')
But, the function is still experimental.
0 Comments
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!