The sum of positive elements of a matrix

21 vues (au cours des 30 derniers jours)
merowing3
merowing3 le 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?

Réponse acceptée

Christopher Wallace
Christopher Wallace le 18 Sep 2018
sum(sum(M(M > 0)))

Plus de réponses (1)

Mohamed Hossam
Mohamed Hossam le 14 Jan 2021
is there a certain command that gets the sum of postive even numbers of an array?
  1 commentaire
Christopher Wallace
Christopher Wallace le 14 Jan 2021
sum(M((M > 0) & (mod(M, 2) == 0)))

Connectez-vous pour commenter.

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by