我正在尝试将 Matlab 中当前工作区的一些数据保存到不同的文件夹中。我尝试使用
save('c:\stp\vtp\train.txt','data','-ASCII');
其中数据是一个双矩阵。它给了我错误信息
??? Error using ==> save
Unable to write file c:\stp\vtp\train.txt: No such file
or directory.
我尝试使用 fullfile 语法,即使这样也是一样的情况。我当前的工作文件夹位于不同的路径中。