MATLAB的setpath文件在哪里?

时间:2012-05-27 18:27:14

标签: matlab configuration environment-variables

我想从MATLAB导出并更改setpath文件的文件夹。但我不知道这个文件在哪里。

2 个答案:

答案 0 :(得分:3)

在Linux中,/usr/local/MATLAB/R2012a/toolbox/local/pathdef.m需要将/usr/local/MATLAB/R2012a部分替换为安装目录。

答案 1 :(得分:3)

您可以执行以下操作,而不是直接导出/修改pathdef文件:

str = path;
save myPathBackup.mat str

如果要恢复它,请执行以下操作:

load myPathBackup.mat
path(str)