swiching elements of same vector
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (1)
Jos (10584)
el 6 de Abr. de 2016
Editada: Jos (10584)
el 6 de Abr. de 2016
Easy:
X = [20 0 0 0 100 0 0 50 0]'
[i,~,v] = find(X)
X(i) = [0 ; v(1:end-1)]
1 comentario
jean claude
el 6 de Abr. de 2016
Editada: jean claude
el 6 de Abr. de 2016
Categorías
Más información sobre Programming en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!