How to add a folder permanently to matlab path?

조회 수: 842 (최근 30일)
Dishant Arora
Dishant Arora 2014년 2월 14일
편집: Walter Roberson 2024년 4월 21일 23:16
I am using addpath to add specified folders to matlab path, but it removes the folders from the matlab path everytime the application closes. I want to add that particular folder permanently to matlab path, so that I don't have to add it again everytime i run the application. How can it be done??
Any help is appreciated.
  댓글 수: 1
Ken Garrard
Ken Garrard 2024년 4월 21일 21:46
편집: Walter Roberson 2024년 4월 21일 23:16
The persistence of the path has been a problem for many releases. Savepath and the save button in the setpath toolbar utility have not worked correctly in every release for many years.
1) If you're using Windows you could try using the MATLABPATH environment variable.
2) You could edit the pathdef.m file even though this is not recommended.
3) I modify the startup.m file to add 64 folders to the search path. The file kpath.mat contains a structure with a single variable that is a character vector of the full path to each of 64 folders that I want to add to the path separated by ';'.
p = load('kpath.mat');
addpath(path(p.kpath,path));
clearvars p;

댓글을 달려면 로그인하십시오.

채택된 답변

Thomas
Thomas 2014년 2월 14일
편집: Thomas 2014년 2월 14일
You can put the addpath statement to startup.m
  댓글 수: 2
Roy Axford
Roy Axford 2020년 1월 31일
This method works best and I have adopted it. Using it makes it unnecessary to maunally add the desired paths and folders at the beginning of a MATLAB session, thereby saving a step.
Ronald Modesitt
Ronald Modesitt 2020년 12월 20일
I am also using this method for my user written functions.

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Jan
Jan 2014년 2월 14일
addpath YourFolder
savepath
  댓글 수: 2
Aysu Soezbir
Aysu Soezbir 2023년 12월 7일
best and easiest advice guys
Tzu-Cheng Hsueh
Tzu-Cheng Hsueh 2023년 12월 11일
Best answer, thanks! Just to remind that all the folder name should not have space between or it could get wrong

댓글을 달려면 로그인하십시오.


Luís Fresco
Luís Fresco 2019년 7월 3일
On Matlab's toolstrip, you may find the option "Set Path" which allows to select one directory (or also its subfolders) and save it permanently to Matlab's "search path".
Untitled.png
  댓글 수: 2
Roy Axford
Roy Axford 2020년 1월 31일
This solution has merit in that it takes advantage of the tool strip and it works. But it is not permenant. It must be repeated each time I restart MATLAB.
adrieto
adrieto 2020년 3월 29일
I used the solution proposed by Luis Fresco. It worked (I didn't need to do it every time I restarted MatLab). Into the default search path I added a new folder with some functions in it. I put "Add with subfolders", selected the main folder and when a new window pop-up, just accept that.
I wrote a script in the main folder which uses a function into the subfolder, and it worked just fine. I restarted MatLab to check if the solution was permanently, and it is.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Search Path에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by