Problem 2031. Half-Swap
Given a vector with an even number of elements, rearrange it so that the elements in its first half are switched with those in the second half.
For example, given a vector:
Vec = [23 24 6 15 15 20 22 23 9 21]
will result in
Vec = [20 22 23 9 21 23 24 6 15 15]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers413
Suggested Problems
-
middleAsColumn: Return all but first and last element as a column vector
637 Solvers
-
680 Solvers
-
314 Solvers
-
1545 Solvers
-
Flip the vector from right to left
10397 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!