finding mode without any repeated number?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Md Moinuddin Shuvo
le 12 Oct 2018
Réponse apportée : Image Analyst
le 12 Oct 2018
I am trying to find the Mode of the columns in the Matrix A. My problem is, if there is no similar value in the column, the mode function always returns the lowest possible number. I read the definition of Mode and if there is no number repeated then there should be no mode. In that case, I should be getting No mode or error message. But why do it gets me the lowest number in the column? What is the theory behind the mode() function here?
A=[1.13 2 9 ; 1.12 5 8; 1.17 7 6];
P= mode(A(:,1));
Q= mode(A(:,2));
R= mode(A(:,3));
The values that I get after running the code are -
P = 1.12
Q = 2
R =6
0 commentaires
Réponse acceptée
Image Analyst
le 12 Oct 2018
"if there is no number repeated then there should be no mode" Where does it say that?
What I read, in the help for R2018b, is "When there are multiple values occurring equally frequently, mode returns the smallest of those values." So you have 3 modes, and it returns the smallest one, just as the help specifies.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!