
How to generate all paths or directories that are actually used by a script?
    2 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
Sometimes the paths contains more than necessary directories  for my script.
It is very tedious to get exact which function/script is from which path. 
Now I want to run a script, and let Matlab record all the directories it ever visisted/referred in its path, and show it to me so I can simplify the path setting.
Will this be something alreay existed in Matlab?
Thanks!
0 Kommentare
Antworten (1)
  Pranav Verma
    
 am 13 Nov. 2020
        Hi Jiansong,
Please refer to dbstack functionality. You can see the location of the functions by setting breakpoints at those functions. Use the "-completenames" option to get the full path of the functions. Below is the snippet from the documentation:

It should help in getting the path to which a function belongs.
Thanks
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

