有没有办法在Matlab上了解演示中涉及的功能?我的意思是从函数/脚本demo
开始,我可以在demo
调用的当前演示中拥有所有涉及的文件/函数的树。
答案 0 :(得分:1)
查看depfun
。
来自文档的引用 -
depfun Locate dependent functions of program file.
TRACE_LIST = depfun(FUN) returns a cell array of files of the dependent
functions of FUN.
答案 1 :(得分:0)
另一种可能更具互动性的方式来查看已经使用的是使用分析器:
profile on -history
% now run some code or function
profile off
profile viewer
并不是它的设计目的,但可以这种方式使用