Adding Value in the array with proper indexing
Ältere Kommentare anzeigen
Hi, here i have an array with random values, i have sort them and divide them in maximum and minimum values, after sorting the array the index of values is changes, if i want to add the minvalues in the orignal unsorted array with proper indexing. how should i do it?
ME=4;
E=rand(1,ME)
ES=sort(E,'descend')
Ls=length(ES);
Hl=(Ls/2);
maxval=ES(1:Hl);
minval=ES(Hl+1:end);
5 Kommentare
madhan ravi
am 27 Mär. 2019
Bearbeitet: madhan ravi
am 27 Mär. 2019
Show an example of your desired output. Also have no idea why you deleted the previous question without responding to the comments.
Maheen Fazal
am 27 Mär. 2019
Maheen Fazal
am 27 Mär. 2019
Rik
am 27 Mär. 2019
That is just the output of your current code, not the output of want as the end result. What vector do you want to have?
Maheen Fazal
am 27 Mär. 2019
Akzeptierte Antwort
Weitere Antworten (1)
Andrei Bobrov
am 27 Mär. 2019
0 Stimmen
ME=4;
E=rand(1,ME);
[ES,ii]=sort(E,'descend');
Ls=length(ES);
Hl=(Ls/2);
maxval=ES(1:Hl);
mxii = ii(1:Hl);
minval=ES(Hl+1:end);
mnii = ii(Hl+1:end);
Enow = sortrows([maxval(:),mxii(:);minval(:),mnii(:)],2);
Enow = Enow(:,1);
1 Kommentar
Maheen Fazal
am 28 Mär. 2019
Kategorien
Mehr zu Shifting and Sorting Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!