What is the standard way to create a dependency graph in R2018a?

4 vues (au cours des 30 derniers jours)
Anish Potnis
Anish Potnis le 14 Déc 2018
Modifié(e) : Adam Danz le 14 Déc 2018
Now that depfun() is deprecated, a few of the MATLAB exchange tools that generate a graph of the dependency structure of a folder no longer work. What is Mathworks' recommended approach to generating such a visualization? I assumed this would be a common need and I'm surprised there doesn't seem to be a standard way of doing this.
Thanks.

Réponses (1)

Adam Danz
Adam Danz le 14 Déc 2018
Modifié(e) : Adam Danz le 14 Déc 2018
depfun() listed the paths of all files a specific m-file (or p-file) needed to function. It didn't produce a graph, unless you're refering to a different 3rd party function.
If you're trying to list the matlab files and toolboxes required to run a specified function, use matlab.codetools.requiredFilesAndProducts()
Example
[funcList, toolList] = matlab.codetools.requiredFilesAndProducts('MyFunction.m');
funcList' %this lists all function dependencies
{toolList.Name}' %this lists any toolbox/product dependencies
{toolList.Version}' %this lists toolbox/product version numbers

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by