Tag: 相关

RMS错误,AME,文本文件中的相关性以及在excel中导出夏季统计信息

亲爱的专家 我试图做一个代码,能够计算RMS,AME, 24文本文件的名称output_00.txt到文件夹中的ouput_23.txt的关联 。 读完每个文件后,我在每个文本文件中将样本的30% (总样本为323)作为-9999.0,然后使用散点数据插值 ,插入这些-9999.0值并通过RMS误差,AME,相关。 更新2 S = dir('interpot_linear_*.txt'); N = sort({S.name}); for K = 1 : length(N) infile = N{K}; whichfile = sscanf(infile, 'interpot_linear_%c%c'); % Load the data data = load(infile); % separate the data columns, just to make the code clear Lat = data(:,1); % Column 1 is Latitude Lon = […]