6

次の点を考慮してください。

DateTime = {'2007-01-01 00:00';'2007-02-01 00:00';'2007-03-01 00:00'};
Headers = {'Datetime','Data'};
Dat = [100,200,300];

Data = [DateTime,num2cell(Dat')];
Final = [Headers;Data];

「Final」のデータをタブ区切りのテキスト ファイルに書き込む方法を教えてください。変数が数値入力のみで構成されている場合に fopen 、 fprintf などを使用する方法は知っていますが、この問題を解決するのに苦労しています。私が試してみました:

fid = fopen('C:\Documents\test.txt','wt');
fprintf(fid,'%s\t%s\n',Final{:});
fclose(fid);

ただし、これは matlab で生成されたものと同じ形式のテキスト ファイルを生成しません。この問題はどのように解決できますか?

4

1 に答える 1

6

このソリューションは、私が必要だと思うものを提供します。私が役に立つと思ういくつかの発言は脇にあります

 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

(同じ結果ですが、列の数には依存しません)。

于 2013-01-08T12:09:26.933 に答える