MATLAB: Accessing data from cell arrays

arraycell

I have cell A which is 1×2 in size. Each entry in the cell is a double with different sizes. Am I able to access the entries from A alone?
For example: A{1,2} (refers to the second matrix in cell A), but I want to access only the fifth column, for example.

Best Answer

A{1,2}(:,5)