Effacer les filtres
Effacer les filtres

calculating MSE and Mean in an array

1 vue (au cours des 30 derniers jours)
negin tebyani
negin tebyani le 22 Fév 2018
Commenté : negin tebyani le 22 Fév 2018
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 commentaire
negin tebyani
negin tebyani le 22 Fév 2018
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?

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by