setting a default matlab path at startup

后端 未结 2 1590
遥遥无期
遥遥无期 2021-01-26 22:00

My team is trying to standardise our Matlab paths so that everyone has the same.

I have a list of the default matlab path that we should all have.

So we would l

2条回答
  •  孤街浪徒
    2021-01-26 22:44

    Include a path or addpath line in file startup.m. For example, to add folder aaa\bbb to the path the line would be

    addpath('aaa\bbb')
    

    Note that each user may have a different startup.m file. You may need to create it, if it doesn't already exist.

提交回复
热议问题