Matlab help. How to add a file into matlab?
조회 수: 75 (최근 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!