How to get the nonzero elements?
Show older comments
hello,
I have a matrix that having a random coulmns and static number of rows ,and these columns contains alot of zeros,some of nonzero elements and i want to get the non zero elements in it and put it in a new matrix with the same static row.thanks in advance .
Ps i searched abt the nonzeros command but i cannot apply it on my code .
Accepted Answer
More Answers (2)
Walter Roberson
on 10 Mar 2012
1 vote
Are there always the same number of non-zero columns in each row? If there are not, then the matrix you are asking to output would not be rectangular. Numeric arrays must be rectangular.
If you need to have a different number of elements per row, then you need to use cell arrays.
3 Comments
Walter Roberson
on 10 Mar 2012
nz_as_Cell = arrayfun( @(IDX) nonzeros(YourArray(IDX,:)), 1:size(YourArray,1), 'Uniform', 0);
Ahmed Hassaan
on 10 Mar 2012
Image Analyst
on 11 Mar 2012
Note the difference. If you run it on my sample matrix, Walter's has a third element of the cell array which contains a null array, whereas my example skips that row altogether. So his will have 5 elements and mine will have 4. Not sure which way you want it.
Image Analyst
on 10 Mar 2012
Can you give an example? What should go in the location of the new matrix where the old matrix had zeros? That is an issue, unless you're wanting to get rid of a column if ALL of its elements are zero. For example, what would this go to:
1 2 3 4 0 6
1 0 0 4 0 6
3 4 4 0 0 6
4 5 0 2 0 7
Do you just want to get rid of column 5 so that the output matrix is 4 by 5? What about the other zeros? What would be at index (2,2), (2,3) etc. of your output matrix where you have lone, isolated zeros in your input matrix? If you need to eliminate those then you'd have to go to a cell array instead of a regular numerical matrix.
3 Comments
Ahmed Hassaan
on 10 Mar 2012
Walter Roberson
on 10 Mar 2012
It is not possible to construct a numeric array that has a different number of elements in each row.
Ahmed Hassaan
on 10 Mar 2012
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!