replicating/copy part of Cell Array

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

 采纳的回答

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

1 个评论

Thanks,
I was {} fixated, "its cell array so must use {}".
wood for trees and all that.
AD

请先登录,再进行评论。

更多回答(1 个)

CA{100,5}; %you have
tempCA = {CA{1:50,4:5}};
NewCA = reshape(tempCA,[50,2]);
Try this!

类别

帮助中心File Exchange 中查找有关 Matrix Indexing 的更多信息

产品

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by