Remove element in multidimensional cell array

6 次查看(过去 30 天)
Good evening,
I have a multi-dimensional cell array c{a}{b} which is indexed by the parameters a=1,...,10 and b=1,...8. Now I'd like to remove e.g. the element a=1, b=3 via c{1}{3}=[], but this only adds zeros. What I am looking for is a Matlab command for the complete removal of c{1}{3}, such that the cell's size is shrinked to b=1,...7. By which command can I achieve this?
  1 个评论
Stephen23
Stephen23 2022-6-8
编辑:Stephen23 2022-6-8
"I have a multi-dimensional cell array c{a}{b}"
I do not see any multidimensional arrays in your examples. You only show nested cell arrays.
MATLAB has actual multi-dimensional arrays (not like many poor low-level langaues that rely on ugly and complicated nested lists that they pretend are multi-dimensional arrays).

请先登录,再进行评论。

回答(1 个)

Stephen23
Stephen23 2022-6-8
编辑:Stephen23 2022-6-8
You used the wrong type of brackets. You used curly braces to place an empty array inside one cell. The reason why you wrote that "this only adds zeros" is because your description does not match your example.
You need to use parentheses to refer to the cell array itself:
a = 10;
b = 8;
c = arrayfun(@(n)num2cell(n:n+b-1),1:a,'uni',0)
c = 1×10 cell array
{1×8 cell} {1×8 cell} {1×8 cell} {1×8 cell} {1×8 cell} {1×8 cell} {1×8 cell} {1×8 cell} {1×8 cell} {1×8 cell}
c{1}
ans = 1×8 cell array
{[1]} {[2]} {[3]} {[4]} {[5]} {[6]} {[7]} {[8]}
c{1}(3) = [];
c{1}
ans = 1×7 cell array
{[1]} {[2]} {[4]} {[5]} {[6]} {[7]} {[8]}

类别

Help CenterFile Exchange 中查找有关 Cell Arrays 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by