I have a license with multiple toolboxes, some of which I never need. Can I configure a start script that does not automatically load all the toolboxes?
Prashant Kumar answered .
2025-11-20
You can remove the path of the toolbox that you do not want loaded from MATLAB search path. To find the path of all the toolboxes installed use the command:
>> path
>> rmpath('put the path of the toolbox here')
>> rmpath([matlabroot '\toolbox\wavelet\wavelet'])
>> restoredefaultpath >> rehash toolboxcache
Please note that restoring the default toolboxes path will delete the path to any custom toolbox that you might have already added and you will have to re-add them.