Finding the average by excluding some values

41 visualizzazioni (ultimi 30 giorni)
ganesh kumar patamsetti
ganesh kumar patamsetti il 11 Set 2019
Risposto: Stephen23 il 11 Set 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

Risposte (1)

Stephen23
Stephen23 il 11 Set 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

Community Treasure Hunt

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

Start Hunting!

Translated by