MATLAB: Access cell array inside another cell array

sub cell array

Hi,
a short question, I just can't get it running:
I have a 1×94 cell array called A with 94 600×27 cell array inside. Now, as an example, I want to access the following value: 2nd row, 3rd column, 4th cell array. How can I do that?
I want to avoid a "temporary variable" as in:
temp=A{4} value=temp(2,3)
Many thanks, Steffen

Best Answer

Hi Steffen,
nested indexing should work:
A = cell(1,94);
A{4} = cell(600, 27);
b = A{4}{600,27}
Titus