このソリューションは、私が必要だと思うものを提供します。私が役に立つと思ういくつかの発言は脇にあります
DateTime = {'2007-01-01 00:00';'2007-02-01 00:00';'2007-03-01 00:00'};
Headers = {'Datetime','Data'};
Dat = [100,200,300];
% // In the way you used fprintf it expects just strings ('%s\t%s\n'),
% // therefore Data should be composed exclusively by them.
% // Numbers are converted to strings by using num2str
% // by using cellfun we iteratively convert every element of num2cell(Dat')
% // in strings, obtaining a cell
Data = [DateTime,cellfun(@num2str, num2cell(Dat'), 'UniformOutput' , false )];
Final = [Headers;Data];
fid = fopen('test.txt','wt');
% // this iterates fprintf on the cell rows, giving you the output
cellfun(@(x,y) fprintf(fid,'%s\t%s\n',x,y),Final(:,1),Final(:,2));
fclose(fid);
結果
Datetime Data
2007-01-01 00:00 100
2007-02-01 00:00 200
2007-03-01 00:00 300
編集: (コメントから) N 列のセルの一般的なケースでは、単純に for ループを実行できます。
for i = 1 : size(Final,1)
fprintf(fid,'%s ', Final{i,:} );
fprintf(fid,'\n');
end
(同じ結果ですが、列の数には依存しません)。