Is there a built-in function to push my vector

6 views (last 30 days)
So lets say I have a vector that is 1 by 7 elements. I am trying to find a built-in function or write one where it can push the vector. Now, by push, I mean take the last element of the vector and move it to be the first element in the vector, and then push all the other elements to the right. For example:
My vector is: [1, 1, 0, 2, 3, 5, -1]. After the push command, it will become: [-1, 1, 1, 0, 2, 3, 5], if I push it again: [5, -1, 1, 1, 0, 2 ,3]. And so on. I wrote a system of for loops to do this but its soooo inefficient considering that I have to do this process so many times.

Accepted Answer

the cyclist
the cyclist on 7 Apr 2023
v = [1, 1, 0, 2, 3, 5, -1];
circshift(v,1)
ans = 1×7
-1 1 1 0 2 3 5

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!