Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Help with storing values for the loop I created want to store them with where they are located on the vector
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Help with storing values for the loop I created want to store them with where they are located on the vector
the vector is [4 1 6 9 2 1 8 3]
want to sort from smallest to biggest which I did, but I can not seem to figure out how to store them from where they were found on the vector.
0 Kommentare
Antworten (2)
Dana
am 24 Sep. 2020
Bearbeitet: Dana
am 24 Sep. 2020
Is this what you're after?
vector = [4 1 6 9 2 1 8 3];
[sorted,sortinds] = sort(vector)
sorted =
1 1 2 3 4 6 8 9
sortinds =
2 6 5 8 1 3 7 4
Here, sortinds gives the locations of the sorted values in the original vector vector, e.g., the first element in the sorted vector is 1=vector(2), the second is 1=vector(6), the third is 2=vector(5), etc.
5 Kommentare
Dana
am 28 Sep. 2020
Your function takes an input vector, and returns two outputs, (i) sorted and (ii) indices. As I understand it, those two outputs should be (i) sorted = the elements of vector sorted into ascending order, and (ii) indices = the locations in vector of each element in sorted.
Is that understanding correct? If so, then
[sorted,indices] = sort(vector)
does exactly what you need. There would be no need to loop on anything.
On the other hand, if I'm misunderstanding things, please try to clearly explain what the function arguments are supposed to equal. In doing so, forget for a minute about how to get those outputs (e.g., don't tell me about the algorithm you think should be used), just explain what those output should be in the end.
madhan ravi
am 26 Sep. 2020
Google bubblesort.
2 Kommentare
madhan ravi
am 28 Sep. 2020
Loop iterator tells you exactly where it was found. It was your homework to use loops, so read about the algorithm.
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!