matlab当前目录下的相对路径
2016-10-21 本文已影响0人
Mr_Chen
- 当前路径下 (mat和m文件在一起):
load ***.mat;
- 在下一级路径下:
load .\下一级路径的文件名\***.mat;
- 在上一级路径下:
load ..\***.mat;
- 在平行文件夹内:
load ..\平行的文件夹\***.mat;
例如,读写当前目录下aaaa文件夹中的x.txt文件
fid = fopen('.\aaaa\x.txt', 'wt');
fprintf(fid, '%s\n', '1234'); fclose(fid);