How do I move an item in an array to the end of that array?

2 Ansichten (letzte 30 Tage)
Steve Franks
Steve Franks am 28 Nov. 2021
Beantwortet: Chunru am 28 Nov. 2021
I'm having trouble getting an array to display right, because one of the numbers keeps showing up in the wrong place. Is there any way to move it from one part of the array to the end, without swapping it with another variable?
Here's an example of what I have (with T being an array):
T = 1 5 77 10 15 20 25 33
Here's an example of what I need:
T = 1 5 10 15 20 25 33 77
Thank you kindly in advance!

Antworten (2)

Image Analyst
Image Analyst am 28 Nov. 2021
indexToMove = 3;
T = [1 5 77 10 15 20 25 33];
T = [T(1:indexToMove-1), T(indexToMove+1:end), T(indexToMove)]
T = 1×8
1 5 10 15 20 25 33 77

Chunru
Chunru am 28 Nov. 2021
T = [1 5 77 10 15 20 25 33];
T1 = sort(T) % Method 1
T1 = 1×8
1 5 10 15 20 25 33 77
T2 = T([1:2 4:end 3]) % Method2
T2 = 1×8
1 5 10 15 20 25 33 77

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by