calculating MSE and Mean in an array

3 次查看(过去 30 天)
I am trying to calculate fairness index of some values that are in an array like:
loadofRRH = [L1,L2,L3,L4,L5,L6]
which can be calculated from:
fainessindex=MSE(L1,L2,L3,L4,L5,L6)/Mean(L1,L2,L3,L4,L5,L6)
as the article that I am reading says, this fainness index has to be between 0 and 1. but what I am getting is more than 1 for example it gives me 8!
I have written the code in matlab like:
MEAN=mean( nonzeros(loadofRRH) );
mainMSE=var(nonzeros(loadofRRH));
fairnessindex=mainMSE/MEAN;
is there some thing that I am doing wrong? can anyone help me with this?
  1 个评论
negin tebyani
negin tebyani 2018-2-22
calculating with matlab and array = [ 2 60 14 17 1 27] I get 475.7667
calculating it in here I get 396.47222 and doing it manually with the way that has been told here I get 594.7!
which one is correct?

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB Compiler 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by