Matlab help. How to add a file into matlab?
78 次查看(过去 30 天)
显示 更早的评论
Wanted to use this file for matlab, but dont know how to use it. http://www.mathworks.com/matlabcentral/fileexchange/5104-toolbox-wavelets
How do I add it? Where in the folder do i place it? How to load it or something, etc.
0 个评论
采纳的回答
Thorsten
2015-1-21
The quick way is to find out current directory (the Present Working Directory)
pwd
and copy the file to this folder.
If you like to keep the downloaded function(s) separated from your mfiles, which is always a good idea, you can create a folder somewhere on your system, e.g.,
/Users/Lim/FilesFromMatlabCentral
and add this folder to Matlab's search path
addpath('/Users/Lim/FilesFromMatlabCentral')
If you download a whole package with lot's of files that are all in one directory, say, "Awesomefunctions" you have to add this directory
addpath('/Users/Lim/FilesFromMatlabCentral/Awesomefunctions')
If the the Awesomefunctions contains itself some subfolders, you use
addpath(genpath('/Users/Lim/FilesFromMatlabCentral/Awesomefunctions'))
If you want to permanently add this path for future sessions of Matlab, use
savepath
If you more into clicking than typing, just use File -> Set Path ... -> Add Folder (or Add with Subfolders) and then Save the path.
0 个评论
更多回答(1 个)
Geoff Hayes
2015-1-21
Lim - create a folder within your MATLAB search path, download the files, and copy them into this folder. Then add this folder and all sub-directories (if any exist) to the search path.
另请参阅
类别
在 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!