How to convert from cell array to multidimensional array?

조회 수: 2 (최근 30일)
Chandrama Sarker
Chandrama Sarker 2017년 7월 24일
댓글: Chandrama Sarker 2017년 7월 24일
I have a cell array that is 1x10,000 with each cell containing a multidimensional array of (7x7x6). How can I convert from cell array to multidimensional array that has a dimensions of (7,7,6,10000)?

채택된 답변

per isakson
per isakson 2017년 7월 24일
편집: per isakson 2017년 7월 24일
Loops are allowed if one remember to pre-allocate
num = nan( 7, 7, 6, 10000 );
for jj = 1 : 10000
num(:,:,:,jj) = C{jj};
end
and they are fast enough
>> cssm
Elapsed time is 0.048869 seconds.
Elapsed time is 0.037956 seconds.
ans =
1
where cssm is
m = randn( 7,7,6 );
C = repmat( {m}, [1,10000] );
tic
num = nan( 7, 7, 6, 10000 );
for jj = 1 : 10000
num(:,:,:,jj) = C{jj};
end
toc
tic
n02 = cat( 4, C{:} );
toc
all( num(:)==n02(:) )
  댓글 수: 1
Chandrama Sarker
Chandrama Sarker 2017년 7월 24일
Thank You Per, it works well. I have also found out one more way to do that: out = Q= cat(4, C{:});

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by