Clear Filters
Clear Filters

Couild anyone help me to count the number of nonzero elements present in each row of matrix

1 view (last 30 days)
If i am having a matrix A=[1 0 2 0 3;
4 5 0 0 0;
3 9 0 0 1]
I want to count the number of non zero elements in a row and it shouls display in the following manner.
[3
2
3]
Could anyone please help me on this

Accepted Answer

madhan ravi
madhan ravi on 4 Apr 2019
sum(A~=0,2)

More Answers (0)

Categories

Find more on Mathematics in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!