mean value of array between values

10 visualizaciones (últimos 30 días)
G T
G T el 31 de Oct. de 2019
Respondida: Bhaskar R el 31 de Oct. de 2019
Hi guys,
I need your help, I need to know a mean value of array between values (without max and min), for example:
a = [1 2 ; 3 4 ; 5 6]
max(A)=6
min(A)=1
Equation: (2 + 3 + 4 + 5)/4
I thought in something like:
( a(i)-max(a)-min(a) )/4
But that's wrong.
Please help me.

Respuesta aceptada

Bhaskar R
Bhaskar R el 31 de Oct. de 2019
Yes, your thought is right
mean_value_ex = (sum(a(:))-(max(a(:))+min(a(:)))/ (numel(a)-2))

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements 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!

Translated by