是否可以在Matlab上调用function2中涉及的所有函数?

时间:2014-04-03 14:53:53

标签: matlab

有没有办法在Matlab上了解演示中涉及的功能?我的意思是从函数/脚本demo开始,我可以在demo调用的当前演示中拥有所有涉及的文件/函数的树。

2 个答案:

答案 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

并不是它的设计目的,但可以这种方式使用