How to flip values greater than zero in a row
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tanmoyee Bhattacharya
el 16 de Abr. de 2018
If I have a row in matrix like that
0 0 0 0 1 2 3 0 0 0
I want to make it like that
0 0 0 0 0 0 3 2 1 0
If it is possible to do?
1 comentario
Stephen23
el 16 de Abr. de 2018
@Tanmoyee Bhattacharya: the numbers a not only flipped L-R, but have been translated too. How is the new position determined?
Respuesta aceptada
Birdman
el 16 de Abr. de 2018
Try this:
A=[0 0 0 0 1 2 3 0 0 0] idx=find(A~=0); A(idx+nnz(A)-1)=fliplr(A(idx)); A(idx(1:end-1))=0
1 comentario
Tanmoyee Bhattacharya
el 16 de Abr. de 2018
Editada: Stephen23
el 16 de Abr. de 2018
Más respuestas (0)
Ver también
Categorías
Más información sobre Argument Definitions en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!