Mode Function in MATLAB: Explained by Ivan

  • Context: MATLAB 
  • Thread starter Thread starter hoheiho
  • Start date Start date
  • Tags Tags
    Function Matlab Mode
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 8K views
hoheiho
Messages
43
Reaction score
0
Hi, I am a bit confusing on the mode function in MATLAB. I have look through some books and say we can use mode function to find "the most show up value" and "show up how many times". For example :
r =

2 2 3
3 3 3
4 2 1

the most show up value is 3 and it shows up 4 times. The mode function will be mode(3,4)??How can i use it in .m file? Like i have "r" and now i want to use mode function to find the 3 and 4??Is there any example for that? coz lots of books just discrible what is mode function and didnt say how to use. Could anyone give me a hand on this?

Thanks
Ivan
 
Physics news on Phys.org
In addition to what I said in your other thread, the online documentation has a great number of examples. For instance, for the mode command:
http://www.mathworks.com/help/techdoc/ref/mode.html

As per the link above, when you have a matrix, the mode command finds the most frequently-occurring (not 'showed-up') values in every column. If you wanted to find the most frequently-occurring value in the entire matrix, you need to turn the matrix into a single row or column vector using reshape:
http://www.mathworks.com/help/techdoc/ref/reshape.html