Effacer les filtres
Effacer les filtres

Conditional mean for a matrix (calculate the mean ignoring the negative numbers)

10 vues (au cours des 30 derniers jours)
I have a matrix m x n with positive (including zeros) and some negative numbers.
How can I calculate the mean of all the numbers ignoring the negatives?
For example, my matrix is:
-1 2 4
3 -1 5
-1 3 4
This "conditional mean" should calculate (2+4+3+5+3+4)/6 = 3.5
Thanks.

Réponse acceptée

Allen
Allen le 19 Déc 2019
Use something similar to the below example
A = [-1, 2, 4
3,-1, 5
-1, 3, 4];
mean(A(A>=0))

Plus de réponses (0)

Catégories

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

Community Treasure Hunt

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

Start Hunting!

Translated by