MATLAB: Selecting specific values on a matrix

MATLABmatrixvector

Hello my fellow companions, I have got a matrix but I would like to select values to create another matrix from it. Let me give you an example, I have a 10×10 matrix, I would like to select the 4th value till the end from column 6 to column 10. If anyone can help me with that much appreciated.

Best Answer

A(4:end,6:10)
Look at
doc array