Skip to main content
1 of 2
E. Chan-López
  • 33.7k
  • 3
  • 34
  • 54

Using the eldo's data:

m = Partition[Range @ 100, 10]; 

An alternative is to use TakeDrop:

dropRC[m_, rows : {_, _}, cols : {_, _}] := TakeDrop[ Transpose@TakeDrop[Transpose@m, rows][[2]], cols][[2]]; dropRC[m, {2, 6}, {2, 3}] // MatrixForm 

enter image description here

E. Chan-López
  • 33.7k
  • 3
  • 34
  • 54