MATLAB: Selecting the last 60 rows in a matrix with an uncertain number of rows

selecting rows matrix

Hi, I have an ax7 matrix with a greater than 60. So the matrix has at least 60 rows but I do not know the exact number. How can I select the last 60 rows of that matrix?
thanks

Best Answer

last60rows = a(end-59:end,:)