Problem 1971. Remove element(s) from cell array
You can easily remove an element (or a column in any dimension) from a normal matrix, but assigning that value (or range) empty. For example
A = 1:10
A(5) = []
results in
1 2 3 4 6 7 8 9 10
You task is to find the shortest, elegant, way in Matlab to do the same for cell arrays. Regexp, eval, and other workarounds that trick mtree are considered stupid, and will not be appreciated.
Solution Stats
Problem Comments
-
2 Comments
源樹 上林
on 22 Aug 2020
good
Yunpeng Teng
on 5 Dec 2020
you should add that the element is deleted by the index not the value
Solution Comments
Show commentsProblem Recent Solvers1502
Suggested Problems
-
Unique values without using UNIQUE function
337 Solvers
-
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
695 Solvers
-
6990 Solvers
-
4994 Solvers
-
Given a square and a circle, please decide whether the square covers more area.
903 Solvers
More from this Author31
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!