swiching elements of same vector
Afficher commentaires plus anciens
hi everybody, i have vector
X=[ 20; 0; 0;0; 100; 0;0;0;50];
i would like to have
X=[0;0;0;0;20;0;0;0;100];
so that each number take the next number case
Réponse acceptée
Plus de réponses (1)
Jos (10584)
le 6 Avr 2016
Modifié(e) : Jos (10584)
le 6 Avr 2016
Easy:
X = [20 0 0 0 100 0 0 50 0]'
[i,~,v] = find(X)
X(i) = [0 ; v(1:end-1)]
1 commentaire
jean claude
le 6 Avr 2016
Modifié(e) : jean claude
le 6 Avr 2016
Catégories
En savoir plus sur Programming dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!