call functions from subpath
조회 수: 153 (최근 30일)
이전 댓글 표시
I have a function called latexfigure which is based on several functions which are placed in subpaths.
The directory structure is thus the following
/libs/latexfigure/latexfigure.m
/libs/latexfigure/exportfig/fix_lines.m
/libs/latexfigure/strsplit/strsplit.m
/libs/latexfigure/../*.m
and an example file using it would add the lib to the path to use it:
addpath('/libs/latexfigure/');
hfig = figure(1); clf;
plot(...)
latexfigure(hfig,'latexfigure','png');
However this fails because latexfigure needs to have all its subdirs in the path.
So how can I achieve this? Can I find out the path of the script itself and add all subdirs? Or can I run functions with path?
General information about this script can be found here: http://www.matthiaspospiech.de/blog/2010/10/11/matlab-figures-solving-export-problems/3/#toc-latexfigure
댓글 수: 1
SGUNITN
2018년 2월 14일
Please try using . in the path. And add the other paths as well. However, adding the paths globally is other option (HOME -> SET PATH)
addpath('./libs/latexfigure/');
답변 (5개)
Daniel Shub
2012년 3월 4일
I am posting this as a new answer because I think it is long enough, but it is based on a comment to my previous answer.
If you look at how MATLAB handles the paths of its toolboxes, you will see that all directories and subdirectories get added to the path. To be consistent with the MATLAB way of installing a toolbox you should add all the paths. This can be done with:
addpath(genpath('/libs/latexfigure/'));
If you don't want this there are 4 ways to proceed.
- You could merge all your directories into one big directory (ugly, but it gets the job done).
- You could merge all your subdirectories into a directory called "private" (case sensitive) which would not need to be added to the path. Functions in "private" directories are only accessible from functions in the immediate parent directory. A "private" directory cannot have subdirectories.
- Your functions could carefully manage the path. Each function could query its location, use genpath and path to determine the missing elements from the path, add the elements, and then remove them at the end. You would want to add an onCleanup catch to handle crashes. This is a lot of work and potentially problematic if you really care about maintaining the path. If not, you can just have each function add all the subdirectories.
- You could create a package. This is the most work, but it might be what you want. I find MATLAB packages frustrating to use and work with.
댓글 수: 2
Jerry Wolfensberger
2016년 5월 10일
To add functions in subfolders, you can use relative paths.
Firstly you will need all subfolders (if you dont want to hardcode them). For that you can use the dir and isdir function.
currentFolderContents = dir(pwd); %Returns all files and folders in the current folder
currentFolderContents (~[currentFolderContents.isdir]) = []; %Only keep the folders
Now the currentFolderContents structure contains all subfolders of your current folder as well as the paths to the current and topfolder ('.' and '..' (These should always be the first two entries)).
To add the subfolders to your path use a for loop
for i = 3:length(currentFolderContents) %Start with 3 to avoid '.' and '..'
addpath(['./' currentFolderContents(i).name])
end
For nested subfolders use nested for loops.
Hope that helps.
Cheers
댓글 수: 0
Daniel Shub
2012년 3월 4일
You may want to look at
doc genpath
For example
addpath(genpath('/libs/latexfigure/'));
might fix your problems.
EDIT You can do either ...
function addallsubpathforscript(name)
addpath(genpath(fileparts(which(name))));
or
function latexfigure(...)
addpath(genpath(fileparts(mfilename('fullpath'))));
Matthias Pospiech
2012년 3월 4일
댓글 수: 1
Daniel Shub
2012년 3월 4일
That is basically my edit. This corrupts the user path and can cause problems if there are name conflicts. You also should look at fileparts:
currPath = fileparts(mfilename('fullpath'));
benjamin rinauto
2016년 10월 18일
Try this file on the file exchange. It sounds like what you need:
https://www.mathworks.com/matlabcentral/fileexchange/59815-addcontainingdirandsubdir--
댓글 수: 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!