Shrink a 1-D array (vector) by removing all the columns with a value of zero
Show older comments
SimpleArray = [1,0,2,0,3,0,4,0,5,0]
Desired result
NewSimpleArray = [1,2,3,4,5]
Accepted Answer
More Answers (4)
Dr. Seis
on 20 Mar 2012
SimpleArray(SimpleArray==0) = [];
David
on 20 Mar 2012
0 votes
Using nonzeros is also very simple (note that the output is a column vector):
NewSimpleArray = nonzeros(SimpleArray)
NewSimpleArray =
1
2
3
4
5
2 Comments
Image Analyst
on 31 Aug 2018
That changes the shape from a row vector to a column vector. However it can be fixed with the code below:
SimpleArray = [1,0,2,0,3,0,4,0,5,0] % Row Vector
NewSimpleArray = nonzeros(SimpleArray) % Creates column vector.
% Reshape back into a row vector.
NewSimpleArray = reshape(NewSimpleArray, 1, [])
saber kazemi
on 12 Dec 2018
How about matrix?
What if the output is still a matrix after removing zero elements?
Salam Ismaeel
on 31 Aug 2018
0 votes
Simply by:
X(X==0)=[]
Categories
Find more on Logical 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!