extracting an element in a vector

6 visualizaciones (últimos 30 días)
murti
murti el 3 de Mayo de 2017
Editada: Andrei Bobrov el 3 de Mayo de 2017
there is a vector like A=[a b c d] and these a b c d are the numbers which I dont know the values. If I write max(A), then I find the max value element of this vector;and writing min(A), I can find the min element of this vector. but I want to create a new vector taking the two values of this A vector except these two max and min. I wanna take the other two element. so,how can i do this?
thanks so much.

Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 3 de Mayo de 2017
Editada: Andrei Bobrov el 3 de Mayo de 2017
[~,ii] = max(A);
[~,ii(2)] = min(A);
out = A(setdiff(1:numel(A),ii));
other way
[~,ii] = sort(A);
out = A(sort(ii(2:end-1)));
more way
out = A(A ~= max(A) & A ~= min(A));
  2 comentarios
murti
murti el 3 de Mayo de 2017
it works, very much thanks.
Andrei Bobrov
Andrei Bobrov el 3 de Mayo de 2017
Editada: Andrei Bobrov el 3 de Mayo de 2017
If we have repititions max's and min's that answers between 1st and 3th ways or 2st and 3th ways are different:
>> A = [100 5 8 5 100];
>> [~,ii] = max(A);
[~,ii(2)] = min(A);
out1 = A(setdiff(1:numel(A),ii))
out1 =
8 5 100
>> [~,ii] = sort(A);
out2 = A(sort(ii(2:end-1)))
out2 =
8 5 100
>> out3 = A(A ~= max(A) & A ~= min(A))
out3 =
8
>>

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Annotations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by