Finding the parent function name

조회 수: 15 (최근 30일)
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan 2016년 8월 4일
댓글: Walter Roberson 2016년 8월 4일
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

채택된 답변

Walter Roberson
Walter Roberson 2016년 8월 4일
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
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan 2016년 8월 4일
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 2016년 8월 4일
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.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by