MATLAB: How to know which function that I used belongs to an additional toolbox rather than matlab

search multiple filestoolbox

A cooperation development with another team. The do not have some toolboxes that I have used, so try to find which command line has called a function that belongs to an addition toolbox,then I can try to avoid it. Already tried lincese('inuse'), depfun() or inmem function, but it can only get which toolbox was used or the path of that, I still do not know which command line has called it actually.
Is there any possible solution ? or other method to solve my problem ?

Best Answer

I believe the Dependency Report will give you the information you want. It will tell you which child functions your main function calls, and you can see the first place in your main function it calls a particular child function using the links in the Children column of the table.