MATLAB: How to find where a function is being invoked

MATLABmatlab function

How do I find where, i.e., in what other defined functions, a function is being invoked? My codebase is getting pretty large, and sometimes I'm not sure where I've used a particular function. Any help for that?

Best Answer

Maybe control-shift-F to do a multi-file search. Or else use the dependency report (the little down arrow on the title bar of the Current Folder panel).
Related Question