Identify all toolbox dependencies

requiredfilesandproducts lists all the installed toolbox dependencies, but not those that aren't installed.
The dependency analyser is capable of detecting required toolboxes that aren't installed, is there a way of doing this programmatically?
https://uk.mathworks.com/help/matlab/ref/matlab.codetools.requiredfilesandproducts.html

Respuestas (1)

Image Analyst
Image Analyst el 27 de Ag. de 2022

0 votos

See attached function.

2 comentarios

David Wilby
David Wilby el 29 de Ag. de 2022
Great, thanks. But this function just invokes requiredfilesandproducts, which as described in the question, only lists the installed required toolboxes, not the uninstalled toolboxes.
That utility lists all toolboxes and m-files required to run the program. It does not list functions within a toolbox and does not list toolboxes that are uninstalled (not/never installed) or toolboxes that are installed but never utilized by your m-file. To get a list of all installed toolboxes, whether or not they are used by your m-file, you can use ver:
s = ver;
allInstalledToolboxes = {s.Name}'

Iniciar sesión para comentar.

Categorías

Más información sobre Introduction to Installation and Licensing en Centro de ayuda y File Exchange.

Productos

Versión

R2022a

Preguntada:

el 27 de Ag. de 2022

Comentada:

el 29 de Ag. de 2022

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by