필터 지우기
필터 지우기

Combine a cell array of cell arrays to a cell array of numbers

조회 수: 1 (최근 30일)
Eduardo
Eduardo 2014년 1월 20일
편집: per isakson 2014년 1월 21일
Hi,
I have a dynamic cell array of cell arrays and I want to combine it into a cell array of data.
For example:
kdata =
Columns 1 through 4
{10x3 cell} {10x3 cell} {10x3 cell} {10x3 cell}
Columns 5 through 8
{10x3 cell} {10x3 cell} {10x3 cell} {10x3 cell}
Columns 9 through 10
{10x3 cell} {10x3 cell}
What I want:
kdata_combined =
Columns 1 through 11
'8' '7' '2' '8' '10' '5' '1' '2' '1' '4' '3'
'2' '1' '4' '2' '3' '0' '3' '3' '0' '0' '0'
'1' '1' '1' '4' '4' '4' '1' '1' '2' '4' '2'
'3' '2' '1' '1' '2' '1' '1' '1' '0' '2' '2'
'2' '5' '0' '0' '1' '2' '0' '2' '0' '1' '0'
'0' '1' '3' '1' '1' '2' '1' '0' '0' '2' '1'
'0' '4' '0' '0' '1' '0' '1' '2' '1' '1' '0'
'2' '0' '0' '0' '0' '0' '0' '0' '1' '0' '0'
'2' '0' '0' '1' '0' '1' '2' '0' '0' '3' '0'
'0' '0' '1' '0' '1' '0' '1' '0' '2' '2' '1'
Columns 12 through 22
'11' '0' '2' '11' '6' '7' '6' '0' '5' '0' '4'
'2' '7' '2' '1' '1' '4' '6' '2' '0' '5' '3'
'2' '1' '1' '1' '1' '4' '3' '1' '2' '3' '0'
'2' '1' '2' '1' '1' '4' '0' '1' '0' '1' '2'
'2' '0' '1' '1' '1' '0' '2' '1' '1' '1' '3'
'0' '0' '0' '3' '0' '4' '0' '0' '0' '0' '1'
'3' '2' '1' '2' '2' '0' '2' '0' '0' '0' '1'
'2' '0' '3' '0' '1' '2' '0' '2' '1' '1' '0'
'1' '0' '1' '1' '0' '0' '2' '0' '2' '0' '0'
'0' '0' '0' '2' '2' '0' '1' '3' '0' '0' '0'
Columns 23 through 30
'1' '1' '3' '1' '2' '4' '5' '8'
'0' '0' '5' '4' '0' '2' '2' '7'
'1' '1' '3' '9' '0' '0' '4' '0'
'3' '1' '1' '0' '3' '0' '0' '1'
'3' '1' '0' '0' '0' '1' '1' '0'
'3' '1' '0' '1' '0' '1' '0' '2'
'1' '0' '0' '1' '1' '0' '1' '0'
'7' '1' '0' '0' '0' '1' '1' '1'
'0' '0' '2' '1' '2' '0' '3' '1'
'4' '0' '1' '0' '2' '0' '2' '0'
I want to do this without any 'for' because my cell arrays are too big. And I can't concat them manually because I never know the size.
Is there anyway I can do this using some function like cell fun ?
Thanks.
  댓글 수: 1
per isakson
per isakson 2014년 1월 21일
편집: per isakson 2014년 1월 21일
How do you know they "are too big" to use a loop?

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

채택된 답변

Matt J
Matt J 2014년 1월 20일
편집: Matt J 2014년 1월 20일
kdata_combined = cell2mat(kdata)
  댓글 수: 6
Eduardo
Eduardo 2014년 1월 20일
편집: Eduardo 2014년 1월 20일
I usually have 1 cell array with 5, 10 or any number of cell arrays in it.
Every one of them are like 4000x3 or 4000x2. But they're all the same size. My example was wrong, sorry about that.
I attached a real .mat file with one cell array.
Matt J
Matt J 2014년 1월 21일
Just do
kdata_combined=[kdata{:}];

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

추가 답변 (2개)

John Thompson
John Thompson 2014년 1월 20일
편집: John Thompson 2014년 1월 20일
% Initialize fake data
cellA = cell(10,1);
for i = 1:10
cellA{i} = num2cell(round(rand(10,1)*10));
end
% RUN THIS to extract and realign nested cell arrays
cac = cell2mat(cellfun(@(x) cell2mat(x)' , cellA, 'UniformOutput', false));

per isakson
per isakson 2014년 1월 21일
편집: per isakson 2014년 1월 21일
You have a cell array of cell arrays of strings. Your strings consist of one and in some cases two characters. The solution, which I proposed, assumed that all strings are of the same length. Since they are not you get the error
Error using cat
Dimensions of matrices being concatenated are not consistent.
Error in cell2mat (line 84)
m{n} = cat(1,c{:,n});
.
I missed the word "number" in the topic title.
Does this do the job?
cac = cat( 2, kdata{:} );
num = str2double( cac );
cac_num = num2cell( num );
or this
kdata_combined = cat( 2, kdata{:} );
both assume that kdata is .< 1 xn cell>
.
[Later]
and when kdata is .< m xn cell>
cc = repmat( kdata, 400, 1 );
tic
nrows = size( cc, 1 );
cac = cell( nrows, 1 );
for jj = 1 : nrows
cac{ jj } = cat( 2, cc{ jj, : } );
end
kdata_combined = cat( 1, cac{:} );
toc
whos('kdata_combined')
returns
Elapsed time is 0.108852 seconds.
Name Size Bytes Class Attributes
kdata_combined 114800x24 314099200 cell
.
I don't think you will find a non-loop solution that is faster
  댓글 수: 1
Eduardo
Eduardo 2014년 1월 21일
I want the result like this:
examples = {{'1','12'},{'2','4'},{'7','10'},{'0','3'}}
example =
{1x2 cell} {1x2 cell} {1x2 cell} {1x2 cell}
result =
'1' '12' '2' '4' '7' '10' '0' '3'
This example has just one row, my real data usually have a lot of rows.

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

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by