evalin('caller','mfilename') does not work.
3 views (last 30 days)
Show older comments
function out = cdc
out = evalin('caller','mfilename');
end
This fucntion returns the 'cdc', not the caller's mfilename.
2 Comments
Rik
on 12 May 2019
Why don't you use mfilename directly in the caller? Alternatively you can do something similar with dbstack.
More Answers (1)
Walter Roberson
on 13 May 2019
"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 Comments
See Also
Categories
Find more on Install Products in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!