How can I determine what add-ons I have installed?
Mostrar comentarios más antiguos
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.
Respuesta aceptada
Más respuestas (2)
Richard Zapor
el 19 de Dic. de 2022
1 voto
ver
This function will give summary of Matlab installed along with Toolboxes
1 comentario
Image Analyst
el 19 de Dic. de 2022
Yes, but not "Add-ons" like the question said. ver gives only MATLAB version and toolboxes, not other Add-ons like you get from the Add-ons manager. For example I have the "Deep Learning Toolbox Model for Alexnet Network" installed (through the Add-on manager), yet it does not show up when I type ver.
The only ways to see what Toolboxes and Add-ons you have installed is to use the Add-On Manager on the Home tab of the tool ribbon, OR programmatically on the command line,as the Mathworks answer also showed.
A programmatic way to list all user-installed toolboxes, available since R2016a. Note, these are not the same as MATLAB Toolboxes that appear in the ver command.
Returns a 1xn structure array
toolboxes =
1×2 struct array with fields:
Name
Version
Guid
List toolbox names
tbnames = {toolboxes.Name}'
tbnames =
2×1 cell array
{'Crystal ball toolbox' }
{'Fix my bugs toolbox' }
Categorías
Más información sobre Startup and Shutdown en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!