MATLAB: How to install user-developed toolbox

installationtoolbox

Like this. I don't want to copy it in my working directory as soon as I intend to use it many times. Thanks.

Best Answer

Put all the m-files of the toolbox in its own folder. Then use the addpath() command to add it to the search path. Use savepath() if you want to make that folder permanently on the search path, rather than just for that session, or you can put the addpath() command into your startup.m file.