finding mode without any repeated number?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Md Moinuddin Shuvo
el 12 de Oct. de 2018
Respondida: Image Analyst
el 12 de Oct. de 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 comentarios
Respuesta aceptada
Image Analyst
el 12 de Oct. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!