0

I have a large complex matrix A of size 500 * 600, but i need to use only a small submatrix from the matrix A.

is there anyway to do that in Matlab 2013R by selecting the start and end range of the rows and columns?

Alladin
  • 1,010
  • 3
  • 27
  • 45
  • 1
    To complete the answer in the duplicate question, if you want to select a submatrix with successive elements from a certain axis, you can use the [colon operator](http://www.mathworks.com/help/matlab/ref/colon.html) (`:`). For example `B = A(100:200, 50:60)`; – Eitan T Jan 28 '15 at 08:04
  • 1
    Thank you very much.. that's exactly what i wanted – Alladin Jan 28 '15 at 08:11

0 Answers0