Finding the average by excluding some values

39 vues (au cours des 30 derniers jours)
ganesh kumar patamsetti
ganesh kumar patamsetti le 11 Sep 2019
Area= [ 1 2 3 4 5 1 1 1 1 12 2 3 4 5 121 145 190 500.............. ]
It has 500 values ranging from 1 to 1000
I need to exclude the values ranging from 1 to 10 and find the average (mean )of the other values.
Can anyone help
Thanks in advance

Réponses (1)

Stephen23
Stephen23 le 11 Sep 2019
>> Area= [ 1 2 3 4 5 1 1 1 1 12 2 3 4 5 121 145 190 500];
>> mean(Area(Area>10))
ans = 193.6

Catégories

En savoir plus sur NaNs 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