Clear Filters
Clear Filters

how to compute number of element in matrix ?

3 views (last 30 days)
if i have this matrix
A = [ 1 3 2 0
2 2 1 0
1 2 1 1 ]
first i want to compute x which mean the sum of element in each row like this
x = [ 6
5
5 ]
second i want to compute y which mean the number of element non zero in each row like this
y = [ 3
3
4 ]

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 28 Apr 2016
A = [ 1 3 2 0
2 2 1 0
1 2 1 1 ]
a=sum(A,2)
b=sum(A~=0,2)

More Answers (0)

Categories

Find more on Matrices and Arrays 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!