evalin('caller','mfilename') does not work.
5 ビュー (過去 30 日間)
古いコメントを表示
function out = cdc
out = evalin('caller','mfilename');
end
This fucntion returns the 'cdc', not the caller's mfilename.
2 件のコメント
Rik
2019 年 5 月 12 日
Why don't you use mfilename directly in the caller? Alternatively you can do something similar with dbstack.
その他の回答 (1 件)
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.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Install Products についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!