MATLAB code analysis and visualization tools?

I just picked up the MATLAB codebase, which covers the documentation and the original developers (who all worked long ago).

I like MATLAB, but I can still use some static analysis tools to visualize the program for a quick idea of ​​how it works, without getting to know all 148 source files ...

I cannot find anything similar for MATLAB - the search returns a lot of m-lint results, but this is not what I am looking for, I am particularly interested in visualizing the code structure.

Greetings

+7
source share
2 answers

You can use doxygen plus an appropriate filter, for example UsingDoxygenwithMatlab .

Be sure to set EXTRACT_ALL = YES to get automatically generated documentation for the code without comments. There are other parameters for generating call trees, etc., but are not sure if they work with converted MatLab code.

+4
source

Some of this answer may be helpful. And don't forget the publish function.

+3
source

All Articles