Effacer les filtres
Effacer les filtres

Finding the parent function name

4 vues (au cours des 30 derniers jours)
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan le 4 Août 2016
Commenté : Walter Roberson le 4 Août 2016
function y = data_num(a,b,c)
How can I find the parent function of ''data_num''?
if i am using deprpt('data_num'). It is not displaying the parent function name. It is thrwoing a error as
''Parent functions cannot be displayed in dependency reports for a single file''.
Thanks a lot

Réponse acceptée

Walter Roberson
Walter Roberson le 4 Août 2016
There is typically not just one caller of any given .m file, and the callers of any given .m file might not even be in any directory that is on your current MATLAB path.
Image Analyst suggests using control-shift-F for multi-file search
  2 commentaires
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan le 4 Août 2016
function a = eliminate_m(g,h)
i know the parent function of 'eliminate_m'. When i use deprpt
('eliminate_m') still i am getting the same error and it is not displaying the parent function.
Walter Roberson
Walter Roberson le 4 Août 2016
The deprpt() function is undocumented, and has been replaced in newer versions.
You can only be told the parent of functions invoked by the files you named. If you only name one file then it cannot tell what the parent is. Individual .m files do not know who calls them, but you can ask to analyze a bunch of files at the same time and see which (if any) of those files call the one you are interested in.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by