Doesn't addpath support adding multiple folder paths at the same time?
조회 수: 9 (최근 30일)
이전 댓글 표시
For example, I have 2 paths of the same level of brothers, how can I add them to the matlab search path by command addpath?
path1 = "parentFolder1/";
path2 = "parentFolder2/";
addpath([path1,path2])
Is the solution to use addpath 2 times, when there are more sibling folders, it seems inelegant to call addpath multiple times?
addpath(path1);
addpath(path2);
addpath(...)
...
댓글 수: 0
채택된 답변
Max Heimann
2022년 2월 28일
편집: Max Heimann
2022년 2월 28일
According to the addpath documentation (mathworks.com/help/matlab/ref/addpath.html), you can add multiple paths at the same time by passing them as comma separated inputs.
If you want to add a dynamically sized list of paths with one call you could add the paths to a cell of strings
paths = {'path1','path2', .. ,'pathN'}
And then call addpath with all entries of paths
addpath(paths{:})
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Search Path에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!