필터 지우기
필터 지우기

trying to combine cells

조회 수: 2 (최근 30일)
nicolas
nicolas 2013년 5월 23일
I have 3 cells [1x5000] , [1x3000] and [1x2000] and I want to combine these in one cell [1x10000]. With small dimensions you can try the copy paste but now this is very slow procedure.
Do you have any ideas?
Thanks in advance!

채택된 답변

Image Analyst
Image Analyst 2013년 5월 24일
Study this example:
% Original cell array, with 3 elements (cells).
ca = {ones(1,5000), rand(1,3000), zeros(1,2000)}
% Construct new cell with one element comprised of the
% contents of the other cell array's cells:
new_ca = {[ca{1}, ca{2}, ca{3}]}
Also, reading the FAQ may be helpful: http://matlab.wikia.com/wiki/FAQ#What_is_a_cell_array.3F
  댓글 수: 2
Andrei Bobrov
Andrei Bobrov 2013년 5월 24일
new_ca = {cat(2,ca{:})};
new_ca = {[ca{:}]};
Image Analyst
Image Analyst 2013년 5월 24일
편집: Image Analyst 2013년 5월 24일
nicolas said "Something like this,(I know that is wrong) C= [X(1, 1:5000),Y(1, 5001:8000), Z(1, 8001:10000)] Any ideas? "
Then just do this:
% Original cell array, with 3 elements (cells).
ca = {ones(1,99000), rand(1,99000), zeros(1,99000)}
% Construct new cell with one element comprised of certain specific elements
% of the contents of the other cell array's cells:
new_ca = {[ca{1}(1:5000), ca{2}(5001:8000), ca{3}(8001:10000)]}
If you have 3 separate cells instead of a cell array, then just concatenate them and use the same solution as above.
% Three separate original cells.
ca1 = {ones(1,99000)};
ca2 = {rand(1,99000)};
ca3 = {zeros(1,99000)};
% Combine, then use same solution as above.
ca = [ca1, ca2, ca3]
% Construct new cell with one element comprised of the
% contents of the other cell array's cells:
new_ca = {[ca{1}(1:5000), ca{2}(5001:8000), ca{3}(8001:10000)]}

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

추가 답변 (5개)

yagnesh
yagnesh 2013년 5월 24일
suppose x is [1x5000] , y is [1x3000] and z is [1x2000]
xyz=[x;y;z]

nicolas
nicolas 2013년 5월 24일
I think that there is a wrong in all of these answers, the way you described helps to create a new cell array, with contents the three cells, but no in a row. I mean that I would like to have in 5000 columns the first cell, the next 3000 columns the second etc.
Something like this,(I know that is wrong) C= [X(1, 1:5000),Y(1, 5001:8000), Z(1, 8001:10000)]
Any ideas? Thanks for your help!
  댓글 수: 1
Image Analyst
Image Analyst 2013년 5월 24일
It's just one line - see my comment under my answer.

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


Andrei Bobrov
Andrei Bobrov 2013년 5월 24일
A = {X,Y,Z};
ii = hankel([0 5000],[5000 8000 10000]);
C = arrayfun(@(x)A{x}(ii(1,x)+1:ii(2,x)),1:numel(A),'un',0);
out = {[C{:}]};

nicolas
nicolas 2013년 5월 24일
It seems so somplicated! I don't know yet! I check this and I ll answer to you, thanks!
  댓글 수: 2
Image Analyst
Image Analyst 2013년 5월 24일
Yes, cell arrays are almost always complicated. Can't you work with just normal old reliable numerical arrays? It would be so much simpler.
nicolas
nicolas 2013년 5월 24일
maybe, but now I have the data in this type, its wasted time to convert them. I just need an array with all of them in a row. Nevertheless thanks again, I ll try again tmrw

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


nicolas
nicolas 2013년 5월 29일
I know that it isn't so clever but finally I did it with (manual operated) "copy-paste" functions. http://www.mathworks.com/help/matlab/matlab_env/view-edit-and-copy-variables.html?searchHighlight=copy+paste+cells
Thanks for your time!

카테고리

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

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by