Add a class folder to path

조회 수: 16 (최근 30일)
Laila
Laila 2025년 3월 10일
편집: Matt J 2025년 3월 10일
I want to add a class folder with its subfolders using command>> addpath(('C:\Program Files\MATLAB\R2023b\toolbox\pde\+pde')); but I get the following messege
Warning: Method directories not allowed in MATLAB path: C:\Program Files\MATLAB\R2023b\toolbox\pde\+pde\@PDEModel
> In path (line 109)
In addpath>doPathAddition (line 116)
In addpath (line 80)
  댓글 수: 1
Matt J
Matt J 2025년 3월 10일
편집: Matt J 2025년 3월 10일
Is there a reason you are manually addpath()-ing native Matlab file folders? Those should have been properly set in the path by the Matlab installer, and shouldn't require your intervention. It seems inadvisable to tamper with them.

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

답변 (1개)

Matt J
Matt J 2025년 3월 10일
편집: Matt J 2025년 3월 10일
Nothing is wrong. @-directories should not and do not need to be on the path as long as their parent directory is.
You can automatically exclude such sub-folders by doing,
>>addpath(genpath(parentFolder))
  댓글 수: 1
Steven Lord
Steven Lord 2025년 3월 10일
It's stronger than "should not and do not" -- from the documentation page describing what the MATLAB search path is:
"Class, namespace, private, and resources folders are special folders that cannot be specified explicitly as part of the search path. A special folder is added to the search path implicitly when its parent folder is specified as part of the path. To access the files and folders within a special folder, you must add its parent folder to the path."

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

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by