- {} curly braces creates a cell array, where the inputs are nested inside the new cell array.
- [] square brackets are a concatenation operator. These are used to concatenate any array type.
Problem with cell array appending
조회 수: 13 (최근 30일)
이전 댓글 표시
mycell is appended with cell arrays in three different areas of my code. Like below
mycell= { }
mycell= A(:,:,1) %1st time. A(:,:,1) is a 1*5 cell array
mycell= {mycell ; B(:,:,1) } %2nd time. B(:,:,1) is a 1*5 cell array
mycell= {mycell ; C(:,:,1) } %3rd time. C(:,:,1) is a 1*5 cell array
1st time output is OK: mycell is a cellarray of 1*5.
2nd time output is also OK: mycell is a 2*1 cell array with each element of 1*5 size.
BUT 3rd time output: mycell is still a 2*1 cell array as below. Why? Why do the previous two elements form as a single element in this third time? Can someone tell me how do I avoid this?
%the output I get after 3rd time line
mycell =
2×1 cell array
{2×1 cell}
{1×5 cell}
% but the output I want is something like.
{1×5 cell}
{1×5 cell}
{1×5 cell}
댓글 수: 1
Stephen23
2021년 9월 17일
Note the difference:
So if you want to nest cell arrays inside other cell arrays, then use curly braces. But if you want to concatenate any arrays together, use square brackets (or the operators CAT, HORZCAT, VERTCAT).
채택된 답변
Star Strider
2021년 9월 16일
Assigning is likely a more efficient approach than concatenation —
A(:,:,1) = randn(1,5);
B(:,:,1) = randn(1,5);
C(:,:,1) = randn(1,5);
mycell{1,:}= A(:,:,1) %1st time. A(:,:,1) is a 1*5 cell array
mycell{2,:}= B(:,:,1) %2nd time. B(:,:,1) is a 1*5 cell array
mycell{3,:}= C(:,:,1) %3rd time. C(:,:,1) is a 1*5 cell array
This also allows for preallocation, that can significantly improve code efficiency.
The cell concatenation approach creates ‘cells-of-cells’, making the interpretation more difficult. The MATLAB concatenation operator are the square brackets [] so using them will produce the correct result —
mycell2 = { }
mycell2 = {A(:,:,1)} %1st time. A(:,:,1) is a 1*5 cell array
mycell2 = [mycell2 ; {B(:,:,1)} ] %2nd time. B(:,:,1) is a 1*5 cell array
mycell2 = [mycell2 ; {C(:,:,1)} ] %3rd time. C(:,:,1) is a 1*5 cell array
This is less efficient than the indexing approach, because it precludes preallocation.
Experiment to get different results.
.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!