R2015a no longer sets the path from pathdef.m upon startup

3 views (last 30 days)
I just upgraded to R2015a on Windows 8.1 Pro x64. I set Matlab's initial folder to "C:\Users\Alex\Documents\MATLAB" in the GUI. I verified it's set by executing userpath.
I then added a few custom folders to path using addpath c:\code\foo c:\code\bar. Launching pathtool does show indeed the custom folders on top, and executing functions from those folders works.
I then saved the current path definitions from the pathtool GUI, which creates pathdef.m inside "C:\Users\MYNAME\Documents\MATLAB\pathdef.m". I verified that pathdef.m does indeed contain c:\code\foo and c:\code\bar
However, upon starting Matlab, my custom folders are no longer in the path. It's always reset to the default set of dirs.
The exact same procedure in R2014b works just fine, but not in R2015a. Any clues?
Alex.
p.s. I don't want to edit files in MATLAB\R2015a\toolboxes\local. As a workaround right now I created a file C:\Users\Alex\Documents\MATLAB\startup.m where I call path(pathdef); which does what Matlab is supposed to do upon startup ...

Answers (4)

Eric Lin
Eric Lin on 16 Jun 2015
The steps you described should allow you to save custom folders to the path. One suggestion is to check if there are multiple pathdef.m files on the path, which could lead to inconsistencies in where MATLAB reads and writes path data, by using the "which" command:
which -all pathdef
If the issue persists, I recommend contacting MathWorks Tech Support.

Alex R.
Alex R. on 16 Jun 2015
There are two files, but one is shadowed, here's the output:
>> which -all pathdef
C:\Users\Alex\Documents\MATLAB\pathdef.m
P:\matlab\R2015a\toolbox\local\pathdef.m % Shadowed
However, R2014b says exactly the same thing and doesn't have any issues:
>> which -all pathdef
C:\Users\Alex\Documents\MATLAB\pathdef.m
P:\matlab\R2014b\toolbox\local\pathdef.m % Shadowed
  2 Comments
Ken Atwell
Ken Atwell on 17 Jun 2015
Two further things to check (and report back to us):
  • The path returned by 'userpath' in both 14b and 15a
  • The values of your "General" preferences as described in this section of the doc.
Alex R.
Alex R. on 17 Jun 2015
Edited: Alex R. on 17 Jun 2015
I already mentioned those in my first post. Once again:
>> userpath
ans =
C:\Users\Alex\Documents\MATLAB;
Same value for the initial working folder. Same in both 15a and 14b.

Sign in to comment.


Julia
Julia on 17 Jun 2015
Edited: Julia on 17 Jun 2015
Hi,
I had a similar problem with my new installation of 2014b.
The Matlab support only suggested a work around ...
My solution: every time I add a new folder I move the matlab folder, which is the result of "userpath", to the top of the list in the pathtool and save.
I don't know why, but it works for me.
  2 Comments
Alex R.
Alex R. on 17 Jun 2015
Edited: Alex R. on 17 Jun 2015
Then it's a bug in 15a. I don't have to do that in 14b. For now I just call path(pathdef); in startup.m which I placed in the userpath Matlab folder next to pathdef.m. You may try the same as it saves you the trouble of moving the userpath folder to the top every time.

Sign in to comment.


Paul Compton
Paul Compton on 15 Sep 2016
The bug in I see in 2015b (and probably 2015a as well) is that saving the pathdef to an alternate location using the GUI does NOT properly name the file. It saves it as pathdef rather than pathdef.m, so it is ignored when MATLAB starts up. Renaming the file to the required name "pathdef.m" allows it to work as expected, at least in my situation here . . .

Categories

Find more on Search Path in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!