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

2 vues (au cours des 30 derniers jours)
Steve Franks
Steve Franks le 28 Nov 2021
Réponse apportée : Chunru le 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!

Réponses (2)

Image Analyst
Image Analyst le 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 le 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

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by