我有一个.txt文件,其中包含以下数据:

sampleF.txt->(制表符分隔)

MSFT    200    100
APPL    10    NULL
AMZN    20    40


我需要使用textscan读取此数据。读取NULL数据时遇到问题。使用treatasempty参数,我可以将其读取为0。但是我想将其读取为NaN。请帮忙!谢谢!

fName = '.....\sampleF.txt'
[fid, message] = fopen(fName) ;
if fid < 0, disp(message), else
    datatxt = textscan(fid, '%q %d %d', 'Delimiter', '\t','treatAsEmpty','NULL');
    datatxt = [ datatxt {1} num2cell(datatxt {2}) num2cell(datatxt {3})] ;
    fclose(fid) ;
end

%datatxt = { 'MSFT' [200] [100] ; 'AAPL' [10] [NaN] ; 'AMZN' [20] [40] }

最佳答案

问题在于类型int32不支持NaN值。而是将数字读取为双精度。即:

data = textscan(fid, '%s %f %f', 'Delimiter','\t', ...
           'treatAsEmpty','NULL', 'EmptyValue',NaN);

10-06 06:39