. , , CSV.
DLMWRITE ( for ), FPRINTF, . , .
, :
%
M = rand(100000,5); %
H = strtrim(cellstr( num2str((1:size(M,2))','Col%d') )); %'
%
tic
fid = fopen('a.csv','w');
fprintf(fid,'%s,',H{1:end-1});
fprintf(fid,'%s\n',H{end});
fprintf(fid, [repmat('%.5g,',1,size(M,2)-1) '%.5g\n'], M'); %'
fclose(fid);
toc
%
tic
fid = fopen('b.csv','w');
fprintf(fid,'%s,',H{1:end-1});
fprintf(fid,'%s\n',H{end});
fclose(fid);
dlmwrite('b.csv', M, '-append');
toc
:
Elapsed time is 0.786070 seconds. %
Elapsed time is 6.285136 seconds. %