How can I determine which function originated the use of a MATLAB toolbox in my code files?
For example, I execute the following:
>> [fList, pList] = matlab.codetools.requiredFilesAndProducts('Test.m')
>> plist(1,2).Name
ans =
'Deep Learning Toolbox'
Calling "matlab.codetools.requiredFilesAndProducts" reports the toolboxes that are used but not the functions belonging to the toolboxes. How can I find out which function in my code is from 'Deep Learning Toolbox'?