• 大小: 0.2M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-02-12
  • 语言: Matlab
  • 标签: rmse  MATLAB  root  mean  square  

资源简介

compute the root-mean-square error

资源截图

代码片段和文件信息

function [ rmse ] = RMSE( f1 f2 )
%UNtitleD Summary of this function goes here
%   Detailed explanation goes here
 e = double(f1) - double(f2);
[m n] = size(e);
rmse = sqrt(sum(e(:) .^ 2) / (m * n));

end


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        217  2010-11-10 23:38  RMSE.m

     文件      89148  2007-06-16 00:11  Fig0801(a).tif

     文件       1286  2007-06-16 00:11  Fig0801(b).tif

     文件      44052  2007-06-16 00:11  Fig0801(c).tif

     文件     286740  2007-06-16 00:16  Fig0809(a).tif

----------- ---------  ---------- -----  ----

               421443                    5


评论

共有 条评论