Effacer les filtres
Effacer les filtres

Is there a built-in function to push my vector

1 vue (au cours des 30 derniers jours)
Ali Almakhmari
Ali Almakhmari le 7 Avr 2023
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.

Réponse acceptée

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

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by