MATLAB: Finding maximum value of each column of a matrix amd locate it in a new vector

MATLABmatrixmaximumvector

Dear all,
I have a 71*6 matrix. How can I find maximum value of each column of the matrix and locate it in a new vector ( of course the size would be 1*6).
Thanks in advance

Best Answer

v=max(your_array)