MATLAB: Replicating/copy part of Cell Array

cell arraysMATLAB

I have Cell Array;
CA{100,5}
is there a function/syntax to copy a section of a cell array in a similar fashion to copying a matrix;
NewCA = CA{1:50, 4:5};
or do I have to cell copy using a loop.
Thanks,
AD

Best Answer

What about ...
NewCA = CA(1:50, 4:5);
Not the use of () and not {}.