MATLAB: Creating new matrix from existing matrix

indexingMATLABmatrix manipulation

I need to create a new matrix that is one size smaller than the existing matrix. i have a 4 x 4 matrix and i want to extract a 3 x 3 matrix from it that starts at (2,2) onwards

Best Answer

matrix(2:end,2:end)