Mercurial > repos > public > matlab_path_manager
view +mpm/info.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 | 38c29c9ba07f |
children |
line wrap: on
line source
function info() m = mpm.MatlabPathManager(); subpaths = m.loadedSubpaths(); fprintf('Loaded subpaths:\n') for i = 1:length(subpaths); fprintf('\t%s\n', subpaths{i}); end end