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
Solution Comments
Show comments
Loading...
Problem Recent Solvers2085
Suggested Problems
-
Make the vector [1 2 3 4 5 6 7 8 9 10]
53347 Solvers
-
Return the 3n+1 sequence for n
8511 Solvers
-
Find state names that start with the letter N
1485 Solvers
-
Project Euler: Problem 10, Sum of Primes
2123 Solvers
-
1030 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!
good
you should add that the element is deleted by the index not the value