- {} 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!