swiching elements of same vector
Ältere Kommentare anzeigen
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
Akzeptierte Antwort
Weitere Antworten (1)
Jos (10584)
am 6 Apr. 2016
Bearbeitet: Jos (10584)
am 6 Apr. 2016
Easy:
X = [20 0 0 0 100 0 0 50 0]'
[i,~,v] = find(X)
X(i) = [0 ; v(1:end-1)]
1 Kommentar
jean claude
am 6 Apr. 2016
Bearbeitet: jean claude
am 6 Apr. 2016
Kategorien
Mehr zu Programming finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!