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

2 次查看(过去 30 天)
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!

回答(2 个)

Image Analyst
Image Analyst 2021-11-28
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 2021-11-28
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

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by