Clear Filters
Clear Filters

Remove numbers from a cell array of length n = 10963

1 view (last 30 days)
As I can remove numbers from a cell array?
I have a cell of 10693 rows and 1 column. Each of these rows contains another array containing numbers and I want to delete the numbers (-1). As I can do that with a loop? thank you very much

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 11 Dec 2013
Edited: Azzi Abdelmalek on 11 Dec 2013
If A is your array
A={1:3 -1:5}
out=cellfun(@(x) x(x~=-1), A,'un',0)

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!