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!