The sum of positive elements of a matrix
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
merowing3
el 18 de Sept. de 2018
Comentada: Christopher Wallace
el 14 de En. de 2021
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?
0 comentarios
Respuesta aceptada
Más respuestas (1)
Mohamed Hossam
el 14 de En. de 2021
is there a certain command that gets the sum of postive even numbers of an array?
1 comentario
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!