The sum of positive elements of a matrix

21 Ansichten (letzte 30 Tage)
merowing3
merowing3 am 18 Sep. 2018
Let M be a matrix with dimensions mxn. Calculate the sum of all positive elements of matrix M without using loop.
My code:
sum(M>0) % sum of all positive elements in respective column, we get vector with sum for each column
sum(sum(M>0)) % sum of all sums from vector
Correct or not?

Akzeptierte Antwort

Christopher Wallace
Christopher Wallace am 18 Sep. 2018
sum(sum(M(M > 0)))

Weitere Antworten (1)

Mohamed Hossam
Mohamed Hossam am 14 Jan. 2021
is there a certain command that gets the sum of postive even numbers of an array?

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by