Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将数据处理成矩阵 ( X),我正在使用以下代码:
X
fid=fopen('Data','w+'); fprintf(fid,'%6.3f %6.3f\n,X); fclose(fid);
要创建一个名为 的文件'Data',我想将该文件保存在网络上的特定驱动器中。我正在寻找要在我的脚本中使用的 matlab 代码,以将文件保存在该驱动器中。
'Data'
打开文件时,您可以将其完整路径提供给 matlab
fid = fopen( '//myDrive/myFolder/Data.txt', 'w' );
在完整路径中,您还可以提供驱动器号
% open 'd:\subFolder\data.txt' fid = fopen( fullfile( 'd:', 'subFolder', 'data.txt'), 'w' );
您可能会发现fullfile命令很有用,因为它可以帮助您不知道您正在使用的操作系统(决定您使用 '\' 或 '/')
fullfile