evalin('ca​ller','mfi​lename') does not work.

조회 수: 6 (최근 30일)
raym
raym 2019년 5월 12일
답변: Walter Roberson 2019년 5월 13일
function out = cdc
out = evalin('caller','mfilename');
end
This fucntion returns the 'cdc', not the caller's mfilename.
  댓글 수: 2
Rik
Rik 2019년 5월 12일
Why don't you use mfilename directly in the caller? Alternatively you can do something similar with dbstack.
raym
raym 2019년 5월 12일
dbstack does not five the full path to the function.
Now I have used mfilename in caller. I'm just curious about how the mfilename works.

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

채택된 답변

Rik
Rik 2019년 5월 12일
편집: Rik 2019년 5월 13일
Depending on your release you can get the complete names including the path from dbstack (in v6.5 you couldn't, but already since v7.0 you can). As the doc describes:
dbstack(___, '-completenames')
outputs the fully qualified name of each function in the stack.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2019년 5월 13일
"evalin('caller', expression) finds only variables in the caller's workspace; it does not find functions in the caller. For this reason, you cannot use evalin to construct a handle to a function that is defined in the caller."
If I recall correctly mfilename is implemented by defining a function in each file.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by