Mercurial > repos > public > matlab_path_manager
annotate +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 |
rev | line source |
---|---|
4
38c29c9ba07f
Add function for showing the state
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
1 function info() |
21
02c290e2018c
Refactor ui functions to use the MPM class. Not tested
Jonatan Werpers <jonatan@werpers.com>
parents:
4
diff
changeset
|
2 m = mpm.MatlabPathManager(); |
02c290e2018c
Refactor ui functions to use the MPM class. Not tested
Jonatan Werpers <jonatan@werpers.com>
parents:
4
diff
changeset
|
3 subpaths = m.loadedSubpaths(); |
4
38c29c9ba07f
Add function for showing the state
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
4 |
38c29c9ba07f
Add function for showing the state
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
5 fprintf('Loaded subpaths:\n') |
38c29c9ba07f
Add function for showing the state
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
6 for i = 1:length(subpaths); |
38c29c9ba07f
Add function for showing the state
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
7 fprintf('\t%s\n', subpaths{i}); |
38c29c9ba07f
Add function for showing the state
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
8 end |
38c29c9ba07f
Add function for showing the state
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
9 end |