在 MATLAB 中保存当前目录的上一级目录

Save the directory one above the current one in MATLAB

假设我在目录中工作:

/home/username/Matlab/

我想(在脚本中)保存我正在工作的目录上方的目录(以便稍后在脚本中使用它),所以:

newdir='home/username';

但是我在不同的电脑上工作,所以'username'变了,所以我想自动做,比如将"newdir"保存为"one above the current directory"。

谢谢

只需使用 .. 语法:

newdir="..";