MATLAB: How to access data in a cell array

arraycellcell arraycell arrays

Hi,
I have a cell array of 1×10 where each of the 10 arrays are matrices of 80×31. If I want to access the data of each of the cells but just (2:60,1), how can I access it?
I tried with mycell{1,[2:60,1]} but it doesn't work.
Any help will be very much appreciated.

Best Answer

Hy Auryn,
myCell{1}(2:60,1) should do the stuff.
Best, Sandro