我有很多(数十万)相当大(> 0.5MB)的文件,其中数据是数字的,但是用逗号作为小数分隔符。
使用像sed "s/,/./g"
这样的外部工具对我来说是不切实际的。
当分隔符是点时,我只使用textscan(fid, '%f%f%f')
,但我看不到更改小数点分隔符的选项。
如何以有效的方式阅读这样的文件?
文件中的示例行:
5,040000 18,040000 -0,030000
注意:有一个similar question for R,但我使用的是Matlab。
答案 0 :(得分:4)
使用测试脚本我发现系数小于1.5。我的代码看起来像:
tmco = {'NumHeaderLines', 1 , ...
'NumColumns' , 5 , ...
'ConvString' , '%f' , ...
'InfoLevel' , 0 , ...
'ReadMode' , 'block', ...
'ReplaceChar' , {',.'} } ;
A = txt2mat(filename, tmco{:});
注意不同的'ReplaceChar'值和'ReadMode''阻止'。
我在我的(不是太新的)机器上获得了大约5MB文件的以下结果:
我的测试脚本的完整代码:
%% generate sample files
fdot = 'C:\temp\cDot.txt';
fcom = 'C:\temp\cCom.txt';
c = 5; % # columns
r = 100000; % # rows
test = round(1e8*rand(r,c))/1e6;
tdot = sprintf([repmat('%f ', 1,c), '\r\n'], test.'); % '
tdot = ['a header line', char([13,10]), tdot];
tcom = strrep(tdot,'.',',');
% write dot file
fid = fopen(fdot,'w');
fprintf(fid, '%s', tdot);
fclose(fid);
% write comma file
fid = fopen(fcom,'w');
fprintf(fid, '%s', tcom);
fclose(fid);
disp('-----')
%% read back sample files with txt2mat and textscan
% txt2mat-options with comma decimal sep.
tmco = {'NumHeaderLines', 1 , ...
'NumColumns' , 5 , ...
'ConvString' , '%f' , ...
'InfoLevel' , 0 , ...
'ReadMode' , 'block', ...
'ReplaceChar' , {',.'} } ;
% txt2mat-options with dot decimal sep.
tmdo = {'NumHeaderLines', 1 , ...
'NumColumns' , 5 , ...
'ConvString' , '%f' , ...
'InfoLevel' , 0 , ...
'ReadMode' , 'block'} ;
% textscan-options
tsco = {'HeaderLines' , 1 , ...
'CollectOutput' , true } ;
A = txt2mat(fcom, tmco{:});
B = txt2mat(fdot, tmdo{:});
fid = fopen(fdot);
C = textscan(fid, repmat('%f',1,c) , tsco{:} );
fclose(fid);
C = C{1};
disp(['txt2mat test comma (1=Ok): ' num2str(isequal(A,test)) ])
disp(['txt2mat test dot (1=Ok): ' num2str(isequal(B,test)) ])
disp(['textscan test dot (1=Ok): ' num2str(isequal(C,test)) ])
disp('-----')
%% speed test
numTest = 20;
% A) txt2mat with comma
tic
for k = 1:numTest
A = txt2mat(fcom, tmco{:});
clear A
end
ttmc = toc;
disp(['txt2mat test comma avg. time: ' num2str(ttmc/numTest) ])
% B) txt2mat with dot
tic
for k = 1:numTest
B = txt2mat(fdot, tmdo{:});
clear B
end
ttmd = toc;
disp(['txt2mat test dot avg. time: ' num2str(ttmd/numTest) ])
% C) textscan with dot
tic
for k = 1:numTest
fid = fopen(fdot);
C = textscan(fid, repmat('%f',1,c) , tsco{:} );
fclose(fid);
C = C{1};
clear C
end
ttsc = toc;
disp(['textscan test dot avg. time: ' num2str(ttsc/numTest) ])
disp('-----')
答案 1 :(得分:0)
您可以使用txt2mat
。
A = txt2mat('data.txt');
它会自动处理数据。但你可以明确地说:
A = txt2mat('data.txt','ReplaceChar',',.');
P.S。它可能效率不高,但如果您只需要特定的数据格式,则可以从源文件中复制该部分。
答案 2 :(得分:0)
您可以尝试通过添加标题行数来加速txt2mat,如果可能,还可以将列数作为输入以绕过其文件分析。与带有点分隔小数的文本扫描导入相比,不应该有25倍。 (您也可以使用mathworks网站上的作者页面与我联系。) 如果您在matlab中找到一种更有效的方法来处理以逗号分隔的小数,请告诉我们。
答案 3 :(得分:0)
我的解决方案(假设逗号仅用作小数位,而空格用于描述列):
fid = fopen("FILENAME");
indat = fread(fid, '*char');
fclose(fid);
indat = strrep(indat, ',', '.');
[colA, colB] = strread(indat, '%f %f');
如果您碰巧需要删除单个标题行,就像我一样,那么这应该有效:
fid = fopen("FILENAME"); %Open file
indat = fread(fid, '*char'); %Read in the entire file as characters
fclose(fid); %Close file
indat = strrep(indat, ',', '.'); %Replace commas with periods
endheader=strfind(indat,13); %Find first newline
indat=indat(endheader+1:size(indat,2)); %Extract all characters after first new line
[colA, colB] = strread(indat, '%f %f'); %Convert string to numerical data