MATLAB: Hi, I request you to please explain the meaning of this statement.

addpath function

>> addpath(fullfile(pwd, 'Myfolder'))

Best Answer

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
Related Question