Mercurial > repos > public > matlab_path_manager
changeset 26:0046610f1573
Rename info to status
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 18 Sep 2018 12:57:32 +0200 |
parents | e2c18217aee0 |
children | 05a8b30ee4a7 |
files | +mpm/info.m +mpm/status.m |
diffstat | 2 files changed, 9 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/+mpm/info.m Tue Sep 18 12:56:22 2018 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,9 +0,0 @@ -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
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/+mpm/status.m Tue Sep 18 12:57:32 2018 +0200 @@ -0,0 +1,9 @@ +function status() + m = mpm.MatlabPathManager(); + subpaths = m.loadedSubpaths(); + + fprintf('Loaded subpaths:\n') + for i = 1:length(subpaths); + fprintf('\t%s\n', subpaths{i}); + end +end