Hi, I request you to please explain the meaning of this statement.
조회 수: 2 (최근 30일)
이전 댓글 표시
>> addpath(fullfile(pwd, 'Myfolder'))
댓글 수: 0
채택된 답변
Sean de Wolski
2014년 9월 9일
Break it into pieces!
>>pwd
What does this return?
>>fullfile(pwd,'MyFolder')
What happens now?
For something like addpath(), look it up in the doc:
>>doc addpath
추가 답변 (1개)
the cyclist
2014년 9월 9일
It tells MATLAB to look in the subdirectory 'Myfolder' of the present directory, when it executes commands. Type
doc addpath
into the Command Window to see a more complete explanation.
참고 항목
카테고리
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!