MATLAB: Search columns of a matrix

columnfindindexindexingmatrixmatrix operations

Disclaimer: I have about a month of experience with Matlab so bare with me.
I have a matrix of test scores where each column is associated with a different student. I want to find the lowest score for each student, i.e. I want to find the minimum value in each column. Whats the best way to go about doing this?

Best Answer

min(matrix) % will return the minimum value in each column
Where matrix is the matrix which contains test scores