How to find the functions called by another function
Afficher commentaires plus anciens
if any Matlab function is calling say 100 functions
Is there any short cut to find the functions called by a specific function? with out going through the entire code.
and any shortcut to find out the functions calling a specific function?
1 commentaire
Kishor
le 20 Août 2011
you can check in reverse order.Place break point in function and then check call stack(use command dbstack) and you will get data in form of structure.
Réponses (3)
PA00
le 23 Août 2011
1 vote
I would try using the profile function. You can either acess the Profiler under the Desktop (Desktop->Profiler) on the menu.
Walter Roberson
le 20 Août 2011
0 votes
See depfun()
The IDE (integrated development environment) has a specific menu item at the top to run the analysis of what is called.
1 commentaire
Nagendra Reddy
le 20 Août 2011
Catégories
En savoir plus sur Debugging and Analysis dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!