Skip to content

Commit

Permalink
Fixing path set issue
Browse files Browse the repository at this point in the history
  • Loading branch information
djoshea committed Jan 31, 2013
1 parent 125a6d6 commit 96df410
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plotting/fig.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
clf;
set(gca,'visible', 'off');
set(hf, 'color', [1 1 1]);
axis square;
%axis square;
set(gca, 'Box', 'off');


Expand Down
6 changes: 4 additions & 2 deletions setPathMatlabUtils.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ function setPathMatlabUtils()
codeRoot = fileparts(mfilename('fullpath'));

fprintf('Path: Adding matlab-utils at %s\n', codeRoot);



% addPathRecursive depends on string functions
addpath(fullfile(codeRoot, 'string'));

thisPath = fileparts(mfilename('fullpath'));
% add this manually as addPathRecursive is located there
addpath(fullfile(codeRoot, 'path'));
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 96df410

Please sign in to comment.