view +mpm/clear.m @ 21:02c290e2018c

Refactor ui functions to use the MPM class. Not tested
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 17 Sep 2018 15:49:39 +0200
parents ce34182c274e
children
line wrap: on
line source

% Remove all loaded subpaths from the matlab path
function clear()
    m = mpm.MatlabPathManager();
    m.clear();
end