Efficient slicing of cell array?

조회 수: 19 (최근 30일)
EGTork
EGTork 2015년 3월 20일
편집: EGTork 2015년 3월 20일
I have a cell array of the form:
c =
[1x100 double]
[2x150 double]
[3x200 double]
And I would like to create a 6x50 matrix consisting of all rows and the first 50 columns of each constituent matrix. Is there an efficient way to do this?

채택된 답변

Andrei Bobrov
Andrei Bobrov 2015년 3월 20일
variant
cell2mat(cellfun(@(x)x(:,1:50),C,'un',0));
  댓글 수: 1
EGTork
EGTork 2015년 3월 20일
편집: EGTork 2015년 3월 20일
Thanks, Andrei. For reference, I compared this cell array approach against directly indexing a matrix to create a submatrix. The cell array solution took about 5X as long, which is not bad considering the extra flexibility provided by cell arrays.
Specifically, I took a cell array containing five 10x100,000 matrices, and used your approach to generate a 50x75,000 submatrix. I compared this to directly indexing into a 50x100,000 matrix to create a 50x75,000 submatrix. For matrices of this size, there was a 5X penalty for using cell arrays instead of a matrix. For smaller matrices, the penalty was somewhat higher (~10X).

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by