Call function by path or namespace?
이전 댓글 표시
I have a package that was given to me that has some functions that have the same name as built in MATLAB functions, preventing me from calling the built in functions. I can image a similar situation where I have been given several packages with functions of the same name. Is there some way to call a function by path (or specify which function I want), or to specify a name space? I did find this similar question, where the suggested solution is to rename the functions, but logistically that can be difficult for packages I don’t control.
채택된 답변
추가 답변 (2개)
One way to approach this is to create a separate folder (that is not on the Matlab path) for your project.
When you set the Matlab working directory to this folder, Matlab should search this folder first, before anything else on the Matlab path, and it will find the locally-defined functions first.
Another approach is to manage the Matlab search path by adding the folder that contains these functions to the beginning of the search path. Matlab will find them first.
This second approach requires you to un-do the path assignment when you are running other projects, so you have to be careful. You can use setup scripts to manage the path changes.
댓글 수: 1
Ted Shultz
2019년 9월 4일
편집: Ted Shultz
2019년 9월 4일
Steven Lord
2019년 9월 4일
0 개 추천
I have a package that was given to me that has some functions that have the same name as built in MATLAB functions
I'd be curious why the author of that package / toolbox / collection of files shadowed built-in MATLAB function (or functions implemented as MATLAB code that's part of the MATLAB installation.) Others have suggested ways to work around this problem, but the root cause of this pain seems to me to be the shadowing and the countermeasure is for the package author to rename those functions.
If that's impossible and the functions being shadowed are truly built-in (not just MATLAB code files provided by MathWorks as part of your MATLAB installation) the builtin function may be of use. But I'd still strongly encourage the author to stop shadowing built-in functions.
카테고리
도움말 센터 및 File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!